﻿/* HEADER BAR */
.profile-header-desktop {
    background: var(--secondary);
    text-align: center;
    padding: 30px 0;
    border-radius: 14px;
    margin-bottom: 40px;
}

/* CARD STYLE */
.profile-card-desktop {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 12px var(--shadow);
    height: 100%;
}

/* CARD TITLE */
.profile-title {
    color: var(--primary-dark);
}

/* ROWS INSIDE CARD */
.profile-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.label {
    font-weight: bold;
    color: var(--text-gray);
    width: 40%;
}

.value {
    color: var(--text-dark);
    width: 60%;
    text-align: right;
}

.input-spacing {
    margin-bottom: 20px;
}

/* CENTERED LOADER */
.center-loader {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 600px) {
    .profile-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .label, .value {
        width: 100%;
        text-align: left;
    }
}

/* Desktop grid tighter */
.desktop-grid {
    margin-top: 20px;
}
