/* ===== Footer Wrapper ===== */
footer.wc-panel-type-footer {
    background: #0f172a; /* dark navy */
    color: #e5e7eb;
    padding: 18px 0;
    font-size: 14px;
}

/* ===== Border Layout Fix ===== */
.wc-borderlayout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== Middle Section ===== */
.wc_bl_mid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ===== Left & Right Columns ===== */
.wc-west,
.wc-east {
    width: 50%;
}

/* ===== Footer Menu ===== */
.wc-listlayout {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ===== Links ===== */
.wc-link {
    color: #cbd5f5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.wc-link:hover {
    color: #38bdf8;
    text-decoration: underline;
}

/* ===== Separator ===== */
.wc-listlayout-separator-bar li:not(:last-child)::after {
    content: "|";
    margin-left: 14px;
    color: #475569;
}

/* ===== Change Password Button ===== */
.wc_btn_cancel {
    background: transparent;
    border: 1px solid #475569;
    color: #e5e7eb;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.wc_btn_cancel:hover {
    background: #38bdf8;
    border-color: #38bdf8;
    color: #020617;
}

/* ===== Right Side (Empty for now) ===== */
.wc-flowlayout {
    min-height: 1px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .wc-west,
    .wc-east {
        width: 100%;
        text-align: center;
    }

    .wc-listlayout {
        justify-content: center;
    }

    .wc-listlayout-separator-bar li::after {
        display: none;
    }
}
