.wifi-password-box {
    max-width: 600px;
    margin: 20px auto;
    background: black;
    border-radius: 12px;
    padding: 20px 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f1f1f1; /* Açık renk yazılar */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px); /* Arka plan bulanıklığı */
}

.wifi-header {
    display: flex;
    justify-content: center; /* YATAY ORTALAMA */
    align-items: center;     /* DİKEY ORTALAMA */
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #00bcd4;
    text-align: center;
}

.wifi-header i {
    font-size: 1.4rem;
}

.wifi-info-line {
    display: flex;
    justify-content: center;  /* Ortala */
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: center;
}

.wifi-info-line strong {
    margin-right: 5px;
    color: #ccc;
}

.wifi-password-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Eski input yerine şifre kutusu */
.wifi-password-display {
    flex: 1;
    padding: 10px;
    font-size: 1rem;
    background-color: rgba(79, 9, 9, 0.08);
    color: #f1f1f1;
    backdrop-filter: blur(2px);
    user-select: text; /* Kopyalanabilir */
    white-space: nowrap;
    overflow-x: auto;
    font-family: monospace;
    text-align: center;
}

/* Kopyala butonu */
.copy-btn {
    background-color: #00bcd4;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background-color: #0097a7;
}

.copy-btn i {
    font-size: 1rem;
}

.copy-status {
    font-size: 0.9rem;
    color: #4caf50;
    margin-top: 5px;
    text-align: center;
}
