/* =========================================================
   USER CONTROL PANEL – GRUNDLAYOUT
   ========================================================= */

#smoke-usercp {
    --ucp-bg: #160d08;
    --ucp-panel: #1c100a;
    --ucp-panel-soft: #24140c;
    --ucp-panel-light: #302014;
    --ucp-border: #50321d;
    --ucp-border-soft: #3f2818;
    --ucp-accent: #98602d;
    --ucp-accent-light: #c58b45;
    --ucp-gold: #d6a363;
    --ucp-gold-light: #ead0a1;
    --ucp-text: #d9c4a5;
    --ucp-muted: #9d856b;

    width: 100%;
    max-width: 1120px;
    height: auto;
    margin: 20px auto 40px;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;

    color: var(--ucp-text);
    background: var(--ucp-bg);

    border-top: 1px solid var(--ucp-border);
    border-right: 1px solid var(--ucp-border-soft);
    border-bottom: 1px solid var(--ucp-border);
    border-left: 4px solid #8c572a;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.30),
        inset 0 0 35px rgba(0, 0, 0, 0.18);

    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

#smoke-usercp,
#smoke-usercp *,
#smoke-usercp *::before,
#smoke-usercp *::after {
    box-sizing: border-box;
}


/* =========================================================
   OBERER KOPFBEREICH
   ========================================================= */

.ucp-topbar {
    width: 100%;
    min-height: 76px;
    padding: 15px 22px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    background:
        linear-gradient(
            90deg,
            rgba(58, 36, 22, 0.96),
            rgba(36, 20, 12, 0.96)
        );

    border-bottom: 1px solid #68401f;
}

.ucp-heading {
    min-width: 0;
}

.ucp-heading-small {
    display: block;
    margin-bottom: 2px;

    color: #9e805d;

    font-family: "Spectral SC", Georgia, serif;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.ucp-heading h1 {
    margin: 0;
    padding: 0;

    color: var(--ucp-gold);

    font-family: "Spectral SC", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ucp-current-user {
    min-width: 190px;
    padding-left: 20px;

    border-left: 1px solid rgba(197, 139, 69, 0.22);

    text-align: right;
}

.ucp-current-user span {
    display: block;

    color: #92775b;

    font-family: "Spectral SC", Georgia, serif;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ucp-current-user strong {
    display: block;
    margin-top: 2px;

    color: var(--ucp-gold-light);

    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
}


/* =========================================================
   HAUPTAUFTEILUNG
   ========================================================= */

.ucp-layout {
    width: 100%;
    padding: 20px;

    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    align-items: start;

    background:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 10px,
            rgba(197, 139, 69, 0.012) 10px,
            rgba(197, 139, 69, 0.012) 11px
        ),
        #1a0f09;
}


/* =========================================================
   LINKE SIDEBAR
   ========================================================= */

.ucp-sidebar {
    min-width: 0;
}


/* =========================================================
   PROFILKARTE
   ========================================================= */

.ucp-profile-card {
    width: 100%;
    margin-bottom: 14px;
    padding: 13px;

    color: var(--ucp-text);
    background: rgba(28, 16, 10, 0.88);

    border-top: 1px solid var(--ucp-border);
    border-right: 1px solid var(--ucp-border-soft);
    border-bottom: 1px solid var(--ucp-border);
    border-left: 3px solid var(--ucp-accent);

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.20);
}

.ucp-avatar {
    width: 100%;
    height: 245px;
    overflow: hidden;

    background: var(--ucp-bg);

    border: 1px solid #79502b;

    outline: 3px solid rgba(22, 13, 8, 0.85);
    outline-offset: -4px;
}

.ucp-avatar img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border: 0;
    border-radius: 0;

    filter:
        sepia(0.06)
        brightness(0.92)
        contrast(1.04);
}

.ucp-profile-name {
    margin-top: 12px;
    padding: 9px 10px;

    color: var(--ucp-gold-light);

    background:
        linear-gradient(
            90deg,
            rgba(58, 36, 22, 0.85),
            rgba(36, 20, 12, 0.78)
        );

    border-bottom: 1px solid #68401f;

    font-family: "Spectral SC", Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

.ucp-profile-actions {
    margin-top: 9px;

    display: grid;
    gap: 6px;
}

.ucp-profile-actions a:link,
.ucp-profile-actions a:visited,
.ucp-profile-actions a:active {
    min-height: 37px;
    padding: 8px 10px;

    display: flex;
    align-items: center;
    gap: 9px;

    color: #c0a17c;
    background: rgba(36, 20, 12, 0.74);

    border: 1px solid rgba(197, 139, 69, 0.14);
    border-left: 2px solid #70451f;

    font-size: 12px;
    line-height: 1.4;
}

.ucp-profile-actions a:hover {
    color: #efd0a3;
    background: #302014;
    border-left-color: #b97839;
}

.ucp-profile-actions i {
    width: 18px;

    color: #b37c42;

    text-align: center;
}


/* =========================================================
   NAVIGATIONSGRUPPEN
   ========================================================= */

.ucp-nav-group {
    width: 100%;
    margin-bottom: 14px;

    background: rgba(28, 16, 10, 0.88);

    border-top: 1px solid var(--ucp-border);
    border-right: 1px solid var(--ucp-border-soft);
    border-bottom: 1px solid var(--ucp-border);
    border-left: 3px solid var(--ucp-accent);
}

.ucp-nav-group:last-child {
    margin-bottom: 0;
}

.ucp-nav-title {
    padding: 10px 12px;

    display: flex;
    align-items: center;
    gap: 8px;

    color: #c99559;
    background: rgba(58, 36, 22, 0.62);

    border-bottom: 1px solid #68401f;

    font-family: "Spectral SC", Georgia, serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ucp-nav-title i {
    color: #a96f34;
}

.ucp-nav-links {
    padding: 7px;
}

.ucp-nav-links a:link,
.ucp-nav-links a:visited,
.ucp-nav-links a:active {
    width: 100%;
    min-height: 35px;
    padding: 7px 9px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;

    color: #ae9476;
    background: rgba(36, 20, 12, 0.60);

    border-bottom: 1px solid rgba(197, 139, 69, 0.10);

    font-size: 12px;
    line-height: 1.45;
}

.ucp-nav-links a:last-child {
    border-bottom: 0;
}

.ucp-nav-links a:hover {
    color: #efd0a3;
    background: rgba(58, 36, 22, 0.48);
}

.ucp-nav-links a > i {
    color: #825226;

    font-size: 9px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.ucp-nav-links a:hover > i {
    color: #c58b45;
    transform: translateX(2px);
}


/* =========================================================
   RECHTER HAUPTBEREICH
   ========================================================= */

.ucp-main {
    min-width: 0;

    display: grid;
    gap: 16px;
}


/* =========================================================
   HAUPTPANEL
   ========================================================= */

.ucp-panel {
    width: 100%;
    min-width: 0;
    overflow: hidden;

    color: var(--ucp-text);
    background: rgba(28, 16, 10, 0.88);

    border-top: 1px solid var(--ucp-border);
    border-right: 1px solid var(--ucp-border-soft);
    border-bottom: 1px solid var(--ucp-border);
    border-left: 3px solid var(--ucp-accent);

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.20);
}

.ucp-panel-heading {
    min-height: 68px;
    padding: 13px 16px;

    display: flex;
    align-items: center;
    gap: 13px;

    background:
        linear-gradient(
            90deg,
            rgba(58, 36, 22, 0.75),
            rgba(36, 20, 12, 0.70)
        );

    border-bottom: 1px solid #68401f;
}

.ucp-panel-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #c58b45;
    background: #24140c;

    border: 1px solid #68401f;

    font-size: 17px;
}

.ucp-panel-heading-text {
    min-width: 0;
}

.ucp-panel-heading h2 {
    margin: 0;
    padding: 0;

    color: var(--ucp-gold-light);

    font-family: "Spectral SC", Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ucp-panel-heading p {
    margin: 2px 0 0;
    padding: 0;

    color: #9d856b;

    font-family: Georgia, serif;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   OPTIONEN-GRID
   ========================================================= */

.ucp-option-grid {
    width: 100%;
    padding: 15px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;

    background:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 10px,
            rgba(197, 139, 69, 0.012) 10px,
            rgba(197, 139, 69, 0.012) 11px
        ),
        rgba(22, 13, 8, 0.40);
}


/* =========================================================
   EINZELNE OPTION
   ========================================================= */

.ucp-option:link,
.ucp-option:visited,
.ucp-option:active {
    position: relative;
    min-width: 0;
    min-height: 83px;
    padding: 12px 34px 12px 12px;

    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 11px;
    align-items: center;

    color: var(--ucp-text);

    background:
        linear-gradient(
            110deg,
            rgba(197, 139, 69, 0.035),
            transparent 60%
        ),
        rgba(36, 20, 12, 0.74);

    border-top: 1px solid rgba(197, 139, 69, 0.17);
    border-right: 1px solid rgba(197, 139, 69, 0.09);
    border-bottom: 1px solid rgba(197, 139, 69, 0.17);
    border-left: 3px solid #70451f;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.ucp-option:hover {
    color: var(--ucp-text);
    background-color: #302014;
    border-left-color: #b97839;
    transform: translateY(-1px);
}

.ucp-option-icon {
    width: 44px;
    height: 44px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #c58b45;
    background: #1a0f09;

    border: 1px solid #5e391e;

    font-size: 17px;
}

.ucp-option-text {
    min-width: 0;
}

.ucp-option-text strong {
    display: block;

    color: #d8b483;

    font-family: "Spectral SC", Georgia, serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.ucp-option-text small {
    display: block;
    margin-top: 3px;

    color: #9f896e;

    font-family: Georgia, serif;
    font-size: 12px;
    line-height: 1.45;
}

.ucp-option-arrow {
    position: absolute;
    top: 50%;
    right: 13px;

    color: #72461f;

    font-size: 10px;

    transform: translateY(-50%);
}

.ucp-option:hover .ucp-option-arrow {
    color: #c58b45;
}


/* =========================================================
   NOTIZBLOCK
   ========================================================= */

.ucp-notepad-form {
    width: 100%;
    padding: 15px;

    background:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 10px,
            rgba(197, 139, 69, 0.012) 10px,
            rgba(197, 139, 69, 0.012) 11px
        ),
        rgba(22, 13, 8, 0.40);
}

#ucp-notepad {
    display: block;
    width: 100%;
    min-height: 170px;
    margin: 0;
    padding: 13px 15px;

    resize: vertical;

    color: #d8c0a0;
    background: #160d08;

    border: 1px solid #57361f;
    border-radius: 0;

    font-family: Georgia, serif;
    font-size: 13px;
    line-height: 175%;

    outline: none;

    scrollbar-width: thin;
    scrollbar-color: #875326 #160d08;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

#ucp-notepad:focus {
    border-color: #9e6935;

    box-shadow:
        0 0 0 1px rgba(197, 139, 69, 0.18);
}

#ucp-notepad::placeholder {
    color: #77614b;
}

#ucp-notepad::-webkit-scrollbar {
    width: 6px;
}

#ucp-notepad::-webkit-scrollbar-track {
    background: #160d08;
}

#ucp-notepad::-webkit-scrollbar-thumb {
    background: #875326;
}

.ucp-notepad-actions {
    margin-top: 11px;

    text-align: right;
}

.ucp-notepad-actions .button {
    min-height: 38px;
    padding: 9px 15px;

    color: #d8af78;
    background: #2f1c10;

    border: 1px solid #70451f;
    border-radius: 0;

    font-family: "Spectral SC", Georgia, serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    cursor: pointer;
}

.ucp-notepad-actions .button i {
    margin-right: 6px;
}

.ucp-notepad-actions .button:hover {
    color: #160d08;
    background: #d1a267;
    border-color: #d1a267;
}


/* =========================================================
   ALLGEMEINE LINKS
   ========================================================= */

#smoke-usercp a {
    text-decoration: none;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media screen and (max-width: 900px) {

    .ucp-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 14px;
        padding: 15px;
    }

    .ucp-avatar {
        height: 210px;
    }

    .ucp-option-grid {
        grid-template-columns: 1fr;
    }

}

@media screen and (max-width: 700px) {

    .ucp-layout {
        display: block;
    }

    .ucp-sidebar {
        margin-bottom: 15px;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .ucp-profile-card {
        grid-row: span 2;
        margin-bottom: 0;
    }

    .ucp-nav-group {
        margin-bottom: 0;
    }

    .ucp-sidebar .ucp-nav-group:last-child {
        grid-column: 2;
    }

}

@media screen and (max-width: 540px) {

    .ucp-topbar {
        display: block;
    }

    .ucp-current-user {
        min-width: 0;
        margin-top: 11px;
        padding-top: 9px;
        padding-left: 0;

        border-top: 1px solid rgba(197, 139, 69, 0.18);
        border-left: 0;

        text-align: left;
    }

    .ucp-heading h1 {
        font-size: 18px;
    }

    .ucp-sidebar {
        display: block;
    }

    .ucp-profile-card,
    .ucp-nav-group {
        margin-bottom: 12px;
    }

    .ucp-avatar {
        width: 180px;
        height: 225px;
        margin-right: auto;
        margin-left: auto;
    }

    .ucp-option-grid {
        padding: 11px;
    }

    .ucp-panel-heading {
        padding: 11px 13px;
    }

    .ucp-panel-heading h2 {
        font-size: 14px;
    }

    .ucp-option:link,
    .ucp-option:visited,
    .ucp-option:active {
        grid-template-columns: 39px minmax(0, 1fr);
        min-height: 76px;
        padding-left: 10px;
    }

    .ucp-option-icon {
        width: 39px;
        height: 39px;
    }

}

@media screen and (max-width: 380px) {

    .ucp-layout {
        padding: 10px;
    }

    .ucp-panel-icon {
        display: none;
    }

    .ucp-option:link,
    .ucp-option:visited,
    .ucp-option:active {
        display: block;
        padding: 11px 30px 11px 11px;
    }

    .ucp-option-icon {
        display: none;
    }

}



/* =========================================================
   PROFILBEARBEITUNG – GRUNDLAYOUT
   ========================================================= */

#profile-edit-page {
    --pep-bg: #160d08;
    --pep-panel: #1c100a;
    --pep-panel-soft: #24140c;
    --pep-panel-light: #302014;
    --pep-border: #50321d;
    --pep-border-soft: #3f2818;
    --pep-accent: #98602d;
    --pep-accent-light: #c58b45;
    --pep-gold: #d6a363;
    --pep-gold-light: #ead0a1;
    --pep-text: #d9c4a5;
    --pep-muted: #9d856b;

    width: 100%;
    max-width: 1120px;
    margin: 20px auto 40px;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;

    color: var(--pep-text);
    background: var(--pep-bg);

    border-top: 1px solid var(--pep-border);
    border-right: 1px solid var(--pep-border-soft);
    border-bottom: 1px solid var(--pep-border);
    border-left: 4px solid #8c572a;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.30),
        inset 0 0 35px rgba(0, 0, 0, 0.18);

    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

#profile-edit-page,
#profile-edit-page *,
#profile-edit-page *::before,
#profile-edit-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   HAUPTÜBERSCHRIFT
   ========================================================= */

.profile-edit-headline {
    width: 100%;
    min-height: 76px;
    padding: 15px 22px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    background:
        linear-gradient(
            90deg,
            rgba(58, 36, 22, 0.96),
            rgba(36, 20, 12, 0.96)
        );

    border-bottom: 1px solid #68401f;
}

.profile-edit-headline-text {
    min-width: 0;
}

.profile-edit-headline-text span {
    display: block;
    margin-bottom: 2px;

    color: #9e805d;

    font-family: "Spectral SC", Georgia, serif;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.profile-edit-headline-text strong {
    display: block;

    color: var(--pep-gold);

    font-family: "Spectral SC", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.profile-edit-headline-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #c58b45;
    background: #24140c;

    border: 1px solid #68401f;

    font-size: 18px;
}


/* =========================================================
   EINLEITUNG
   ========================================================= */

.profile-edit-intro {
    padding: 15px 22px;

    color: #bba589;
    background: rgba(28, 16, 10, 0.88);

    border-bottom: 1px solid var(--pep-border);

    font-family: Georgia, serif;
    font-size: 13px;
    line-height: 175%;
}


/* =========================================================
   FEHLERMELDUNGEN
   ========================================================= */

.profile-edit-errors {
    width: 100%;
}

.profile-edit-errors:empty {
    display: none;
}

.profile-edit-errors .error,
.profile-edit-errors .error_message,
.profile-edit-errors .error_message ul,
.profile-edit-errors > div,
.profile-edit-errors > table {
    width: calc(100% - 40px);
    margin: 15px 20px 0;
    box-sizing: border-box;
}

.profile-edit-errors .error,
.profile-edit-errors .error_message {
    padding: 12px 15px;

    color: #e0c3a0;
    background: #351b13;

    border: 1px solid #75402f;
    border-left: 4px solid #a95a43;

    font-size: 13px;
    line-height: 160%;
}

.profile-edit-errors ul {
    margin-top: 0;
    margin-bottom: 0;
}


/* =========================================================
   ZWEISPALTIGE AUFTEILUNG
   ========================================================= */

.profile-edit-grid {
    width: 100%;
    padding: 20px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;

    background:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 10px,
            rgba(197, 139, 69, 0.012) 10px,
            rgba(197, 139, 69, 0.012) 11px
        ),
        #1a0f09;
}

.profile-edit-column {
    min-width: 0;

    display: grid;
    gap: 16px;
}


/* =========================================================
   FELDBEREICHE
   ========================================================= */

#profile-edit-page fieldset,
.profile-edit-section {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;

    color: var(--pep-text);
    background: rgba(28, 16, 10, 0.88);

    border-top: 1px solid var(--pep-border);
    border-right: 1px solid var(--pep-border-soft);
    border-bottom: 1px solid var(--pep-border);
    border-left: 3px solid var(--pep-accent);

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
}

#profile-edit-page fieldset legend,
.profile-edit-section legend {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 11px 14px;

    display: block;

    color: #c99559;
    background:
        linear-gradient(
            90deg,
            rgba(58, 36, 22, 0.72),
            rgba(36, 20, 12, 0.68)
        );

    border: 0;
    border-bottom: 1px solid #68401f;

    font-family: "Spectral SC", Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#profile-edit-page fieldset legend i {
    margin-right: 7px;

    color: #a96f34;
    font-size: 11px;
}

.profile-edit-section-content {
    padding: 15px;
}


/* =========================================================
   GENERIERTE MYBB-BEREICHE
   ========================================================= */

.profile-edit-generated-sections {
    width: 100%;
    min-width: 0;

    display: grid;
    gap: 16px;
}

.profile-edit-generated-sections > br {
    display: none;
}

.profile-edit-generated-sections > fieldset,
.profile-edit-generated-sections > table,
.profile-edit-generated-sections > div {
    margin-top: 0;
    margin-bottom: 0;
}


/* =========================================================
   TABELLEN
   ========================================================= */

#profile-edit-page table {
    width: 100%;
    max-width: 100%;

    border-collapse: collapse;
    table-layout: auto;
}

#profile-edit-page table td {
    padding: 8px 7px;

    color: var(--pep-text);

    border-bottom: 1px solid rgba(197, 139, 69, 0.11);

    font-size: 13px;
    line-height: 155%;
    vertical-align: middle;
}

#profile-edit-page table tr:last-child > td {
    border-bottom: 0;
}

#profile-edit-page table td:first-child {
    color: #bca17e;
}

#profile-edit-page table .smalltext {
    color: #9f896e;

    font-size: 12px;
    line-height: 155%;
}


/* =========================================================
   ALTE BENUTZERDEFINIERTE ÜBERSCHRIFTEN
   ========================================================= */

#profile-edit-page h1,
#profile-edit-page h7,
#profile-edit-page h8,
#profile-edit-page h9,
#profile-edit-page h13 {
    margin: 0;
    padding: 0;

    display: inline;

    color: inherit;
    background: transparent;

    border: 0;

    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
}


/* =========================================================
   FELDBEZEICHNUNGEN
   ========================================================= */

.profile-edit-field-title {
    margin-bottom: 7px;

    color: #c99559;

    font-family: "Spectral SC", Georgia, serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 145%;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.profile-birthday-privacy-title {
    margin-top: 15px;
}


/* =========================================================
   GEBURTSTAG
   ========================================================= */

.profile-birthday-fields {
    width: 100%;

    display: grid;
    grid-template-columns: 90px minmax(150px, 1fr) 110px;
    gap: 10px;
}

.profile-birthday-field {
    min-width: 0;
}

.profile-birthday-field label {
    display: block;
    margin-bottom: 5px;

    color: #9f896e;

    font-size: 12px;
    line-height: 145%;
}


/* =========================================================
   FORMULARFELDER
   ========================================================= */

#profile-edit-page input.textbox,
#profile-edit-page input[type="text"],
#profile-edit-page input[type="email"],
#profile-edit-page input[type="password"],
#profile-edit-page input[type="url"],
#profile-edit-page input[type="number"],
#profile-edit-page select,
#profile-edit-page textarea {
    width: 100%;
    max-width: 100%;
    min-height: 39px;
    margin: 0;
    padding: 8px 10px;

    color: #dbc4a6;
    background: #160d08;

    border: 1px solid #57361f;
    border-radius: 0;

    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.45;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

#profile-edit-page textarea {
    min-height: 125px;

    resize: vertical;

    font-family: Georgia, serif;
    line-height: 170%;
}

#profile-edit-page input:focus,
#profile-edit-page select:focus,
#profile-edit-page textarea:focus {
    border-color: #9e6935;

    box-shadow:
        0 0 0 1px rgba(197, 139, 69, 0.18);
}

#profile-edit-page input::placeholder,
#profile-edit-page textarea::placeholder {
    color: #75614d;
}


/* =========================================================
   RADIOBUTTONS UND CHECKBOXEN
   ========================================================= */

#profile-edit-page input[type="checkbox"],
#profile-edit-page input[type="radio"] {
    width: 15px;
    height: 15px;
    margin: 0 6px 0 0;

    vertical-align: middle;

    accent-color: #a96a2d;
}

#profile-edit-page label {
    color: #bca588;

    font-size: 13px;
    line-height: 155%;
}


/* =========================================================
   KONTAKT- UND PROFILFELDER
   ========================================================= */

#profile-edit-page .tborder {
    margin: 0;
    overflow: hidden;

    background: rgba(28, 16, 10, 0.88);

    border-top: 1px solid var(--pep-border);
    border-right: 1px solid var(--pep-border-soft);
    border-bottom: 1px solid var(--pep-border);
    border-left: 3px solid var(--pep-accent);
}

#profile-edit-page .thead,
#profile-edit-page .tcat {
    padding: 11px 14px;

    color: #c99559;
    background:
        linear-gradient(
            90deg,
            rgba(58, 36, 22, 0.72),
            rgba(36, 20, 12, 0.68)
        );

    border: 0;
    border-bottom: 1px solid #68401f;

    font-family: "Spectral SC", Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#profile-edit-page .trow1,
#profile-edit-page .trow2 {
    color: var(--pep-text);
    background: rgba(28, 16, 10, 0.82);
}


/* =========================================================
   SPEICHERN
   ========================================================= */

.profile-edit-actions {
    width: 100%;
    padding: 15px 20px;

    text-align: right;

    background:
        linear-gradient(
            90deg,
            rgba(28, 16, 10, 0.94),
            rgba(36, 20, 12, 0.92)
        );

    border-top: 1px solid var(--pep-border);
}

.profile-edit-submit {
    min-height: 40px;
    padding: 9px 17px;

    color: #d8af78;
    background: #2f1c10;

    border: 1px solid #70451f;
    border-radius: 0;

    font-family: "Spectral SC", Georgia, serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.profile-edit-submit i {
    margin-right: 7px;
}

.profile-edit-submit:hover {
    color: #160d08;
    background: #d1a267;
    border-color: #d1a267;
}


/* =========================================================
   LINKS
   ========================================================= */

#profile-edit-page a:link,
#profile-edit-page a:visited,
#profile-edit-page a:active {
    color: #d1a064;
}

#profile-edit-page a:hover {
    color: #f0d3a7;
}


/* =========================================================
   SCROLLBARS
   ========================================================= */

#profile-edit-page * {
    scrollbar-width: thin;
    scrollbar-color: #875326 #160d08;
}

#profile-edit-page *::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

#profile-edit-page *::-webkit-scrollbar-track {
    background: #160d08;
}

#profile-edit-page *::-webkit-scrollbar-thumb {
    background: #875326;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media screen and (max-width: 850px) {

    .profile-edit-grid {
        grid-template-columns: 1fr;
    }

}

@media screen and (max-width: 600px) {

    .profile-edit-headline {
        padding: 13px 16px;
    }

    .profile-edit-headline-text strong {
        font-size: 18px;
        letter-spacing: 1.4px;
    }

    .profile-edit-headline-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .profile-edit-grid {
        padding: 14px;
    }

    .profile-birthday-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-birthday-month {
        grid-column: span 2;
        grid-row: 1;
    }

    #profile-edit-page table,
    #profile-edit-page table tbody,
    #profile-edit-page table tr,
    #profile-edit-page table td {
        max-width: 100%;
    }

}

@media screen and (max-width: 430px) {

    .profile-edit-headline-icon {
        display: none;
    }

    .profile-edit-headline-text strong {
        font-size: 16px;
    }

    .profile-edit-intro {
        padding: 13px 15px;

        font-size: 12px;
    }

    .profile-edit-grid {
        padding: 10px;
    }

    .profile-edit-section-content {
        padding: 11px;
    }

    .profile-birthday-fields {
        grid-template-columns: 1fr;
    }

    .profile-birthday-month {
        grid-column: auto;
        grid-row: auto;
    }

    #profile-edit-page table td {
        padding-right: 4px;
        padding-left: 4px;

        font-size: 12px;
    }

    .profile-edit-actions {
        text-align: center;
    }

    .profile-edit-submit {
        width: 100%;
    }

}