/* Profile Card */
#profile-wrapper {
    margin: 0 10px 10px;
}

.profile {
    background: var(--background-style-dark);
    border: 1px solid var(--clr-border-primary);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 10px;
}

.profile .header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(156, 0, 0, 0.3);
}

.profile .header svg {
    color: var(--clr-style-1);
    flex-shrink: 0;
}

.profile .header h1 {
    font-size: 17px;
    font-weight: 700;
    color: var(--clr-style-1);
    margin: 0;
}

.profile .row {
    display: flex;
    align-items: center;
    padding: 7px 0;
    gap: 5px;
    font-size: 14px;
}

.profile .row .label {
    width: 38%;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
}

.profile .row .divider {
    color: rgba(255,255,255,0.5);
    width: 14px;
    flex-shrink: 0;
}

.profile .row .value {
    flex: 1;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

/* Settings Section */
#settings {
    margin: 0 10px;
}

#settings .links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#settings .link {
    border: 1px solid var(--clr-border-primary);
    border-radius: 5px;
    background: var(--background-style-dark);
    cursor: pointer;
    transition: background 0.2s;
}

#settings .link a {
    display: block;
    padding: 13px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

#settings .link:hover {
    background: rgba(156, 0, 0, 0.1);
}

#settings .link.logout {
    background: var(--grd-secondary);
    border-color: #6a1fb8;
}

#settings .link.logout:hover {
    background: var(--grd-secondary);
    filter: brightness(1.1);
}

#settings .link.logout a {
    color: #fff;
    font-weight: 700;
}

/* ===========================
   LANGUAGE MODAL
   =========================== */

#modal-change-language .content .title {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-style-1);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.btn-language {
    display: block;
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: var(--background-style-dark);
    border: 1px solid var(--clr-border-primary);
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.5px;
}

.btn-language:last-child {
    margin-bottom: 0;
}

.btn-language:hover,
.btn-language:active {
    background: rgba(156, 0, 0, 0.15);
    border-color: var(--clr-style-1);
}
