        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

body-ic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}



        .container {
            width: 100%;
            max-width: 600px;
            background: #ffffff;
            border-radius: 20px;
            padding: 15px;
            text-align: center;
            transition: transform 0.3s;
            margin-left: 15px;
        }

        .container:hover {
            transform: translateY(-5px);
        }

        .header {
            background-color: #1976d2;
            color: white;
            padding: 20px;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            text-align: left;
        }

        .header h1 {
    padding-left: 95px;
    margin-left: 15px;
    padding-top: 15px;
    font-weight: 800;
    font-family: monospace;
    font-size: xxx-large;
        }

        .border {
            border: 1px #5476d2 dashed;
            border-top: none;
            border-bottom: none;
            flex-direction: column;
            align-items: stretch; 
        }

        .detail {
            background: #f9f9f9;
            padding: 10px; 
            font-size: 16px;
            color: #333;
            transition: background 0.3s;
            display: flex; 
            justify-content: space-between; 
            width: 100%; 
        }

        .iban {
            background: #e3f2fd;
            border-radius: 0 0 10px 10px;
            padding: 20px;
            font-size: 20px;
            color: #4f88e0;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .copy-icon {
            margin-left: 10px;
            cursor: pointer;
            color: #1976d2;
            font-size: 24px;
            transition: color 0.3s;
			font-weight: 100;
        }

        .copy-icon:hover {
            color: #004ba0;
			font-weight: 600;
        }
        
        .text-st {
            padding-left: 5px;
            font-weight: 600;
            color: #3879df;
			font-family: system-ui;
        }

        @media (max-width: 600px) {
            .header {
                display: flex; 
                flex-direction: column; 
                align-items: center; 
                text-align: center; 
            }

            .header h1 {
                font-size: 28px;
    padding-left: 0px;
    margin-left: 0px;
    padding-top: 15px;
            }

            .header h2 {
                font-size: 18px;
            }

            .detail {
                font-size: 14px;
            }

            .iban {
                font-size: 18px;
            }

            .resim {
                border-radius: 50%;
                width: 100px;
                margin: 0; 
                margin-bottom: 10px; 
            }
        }
		
        @media (max-width: 220px) {
           .container {
		     visibility: hidden;
             display: none;
		   }
        }		
		
		
        .resim {
            border-radius: 50%;
            width: 100px;
            float: left;
        }
		
		.iban-text {
			color: #00000b;
            font-weight: 600;
            font-family: monospace;
		}
		
		.iban-number {
		  font-family: monospace;
          font-weight: 600;
		}

        .message-box {
            max-width: 600px;
            border-radius: 6px;
            margin: 15px 15px;
            padding: auto 0;
            position: relative;
        }
        .message-box i {
            vertical-align: middle;
            padding: 20px;
        }
        .message-box i.exit-button {
            float: right;
            opacity: 0.4;
        }
        .message-box i.exit-button:hover {
            opacity: 0.8;
        }

        .message-text {
            vertical-align: middle;
        }

        .message-box-info {
            background-color: #CDE8F6;
            border: #2697d1 2px solid;
            color: #447EAF;
        }

        .message-box-warn {
            background-color: #ECC8C5;
            border: #d37f78 2px solid;
            color: #B83C37;
        }

        .message-box-error {
            background-color: #ECC8C5;
            border: #d37f78 2px solid;
            color: #B83C37;
        }

        .message-box-success {
            background-color: #DDF3D5;
            border: #9ddc86 2px solid;
            color: #597151;
        }