.omada-admin .omada-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.omada-admin .section-title {
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.omada-admin .field {
    margin-bottom: 18px;
}

.omada-admin .field label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.omada-admin .field input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
}

.password-wrap {
    display: flex;
    align-items: center;
}

.toggle-password {
    margin-left: 8px;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 18px;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input { display:none; }

.slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 34px;
    top: 0; left: 0; right: 0; bottom: 0;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

.switch input:checked + .slider {
    background-color: #2271b1;
}

.switch input:checked + .slider:before {
    transform: translateX(22px);
}

.field-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.label-text {
    margin-left: 10px;
    font-weight: 600;
}

