/* WiFi */
.section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-info);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.wifi-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.password-container {
    margin-top: 12px;
}

.password-wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.password-wrapper input {
    flex-grow: 1;
}

.eye-icon {
    margin-left: 10px;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
}

.btn-right {
    width: auto;
    margin-left: auto;
    margin-top: 8px;
}

.wifi-icon {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    line-height: 0;
    vertical-align: middle;
    margin-bottom: 4px;
    margin-left: 14px;
}

.wifi-icon .bar {
    width: 6px;
    border-radius: 2px;
    margin: 0;
}

.bar-active {
    background: var(--color-wifi-active);
}

.bar-inactive {
    background: var(--color-wifi-inactive);
    opacity: 0.6;
}

.field-label {
    font-size: 14px;
    color: #00bcd4;
    margin-bottom: 4px;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
}

.current-ssid {
    margin-top: 10px;
    font-weight: bold;
    color: #f0b429;
}

select, 
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #444;
    background: #333;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

input:focus, select:focus {
    outline: none;
    border-color: #f0b429;
}


.height-1 { height: 4px; }
.height-2 { height: 8px; }
.height-3 { height: 12px; }
.height-4 { height: 16px; }

/* 
@media (max-width: 420px) {
    .container {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        min-height: 100vh;
    }
} */
