/* Toast Notification Styles */
.toast {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease-in-out;
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    background-color: #4caf50;
    color: white;
}

.toast-error {
    background-color: #f44336;
    color: white;
}

.profile-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    gap: 30px;
    background-color: #f0fceb;
    min-height: calc(100vh - 60px);
}

.profile-sidebar {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 80px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.nav-tab {
    display: block;
    padding: 12px 16px;
    color: #5a7a45;
    background: transparent;
    border: 2px solid #e0e8d8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.nav-tab:hover {
    background: #f0f7ed;
    border-color: #5a7a45;
    color: #2d5016;
}

.nav-tab.active {
    background: #5a7a45;
    border-color: #5a7a45;
    color: white;
}

.sidebar-subnav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: block;
    padding: 10px 16px;
    color: #5a7a45;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
}

.nav-item:hover {
    background: #f0f7ed;
    color: #2d5016;
}

.nav-item.active {
    background: #5a7a45;
    color: white;
    font-weight: 600;
}

.profile-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.profile-content h1 {
    color: #2d5016;
    font-size: 32px;
    margin-bottom: 8px;
}

.subtitle {
    color: #5a7a45;
    font-size: 15px;
    margin-bottom: 0;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0fceb;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    color: #2d5016;
    font-size: 22px;
    margin-bottom: 20px;
}

.form-section h3 {
    color: #2d5016;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.section-hint {
    color: #5a7a45;
    font-size: 13px;
    margin-bottom: 15px;
    font-style: italic;
}

.profile-picture-upload {
    display: block;
    padding: 0;
    background-color: transparent;
    border: none;
}

.current-picture {
    flex-shrink: 0;
    display: none;
    margin-bottom: 20px;
}

#current-picture-container {
    display: flex;
    margin-bottom: 20px;
}

.current-picture.has-image {
    display: block;
}

#profile-picture-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #5a7a45;
}

.drop-zone {
    border: 2px dashed #d4e8d0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    background-color: #fafffe;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 15px;
}

.drop-zone:hover {
    border-color: #5a7a45;
    background-color: #f5faf3;
}

.drop-zone.drag-over {
    background-color: #e8f5e9;
    border-color: #5a7a45;
    border-style: solid;
}

.drop-zone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #5a7a45;
}

.drop-zone-content svg {
    color: #5a7a45;
    opacity: 0.7;
}

.drop-zone-text {
    font-size: 15px;
    font-weight: 500;
    color: #2d5016;
    margin: 0;
}

.drop-zone-or {
    font-size: 13px;
    color: #8ba87a;
    margin: 0;
}

#profile-picture-input {
    display: none;
}

.btn-remove {
    width: 100%;
    padding: 12px;
    background-color: white;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 10px;
}

.btn-remove:hover {
    background-color: #ffebee;
    border-color: #ef5350;
}

.upload-controls {
    flex: 1;
}

.upload-hint {
    color: #5a7a45;
    font-size: 12px;
    margin-top: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #2d5016;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d4e8d0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background-color: #fafffe;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #5a7a45;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(90, 122, 69, 0.1);
}

.form-section .divider {
    height: 1px;
    background: #e8f5e9;
    margin: 30px 0;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0fceb;
}

.btn-save {
    padding: 12px 30px;
    background: linear-gradient(135deg, #5a7a45 0%, #2d5016 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.btn-save-header {
    padding: 12px 30px;
    background: linear-gradient(135deg, #5a7a45 0%, #2d5016 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
}

.btn-save-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.btn-cancel-header {
    padding: 12px 30px;
    background: white;
    color: #5a7a45;
    border: 2px solid #d4e8d0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
}

.btn-cancel-header:hover {
    background: #f0fceb;
    border-color: #5a7a45;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.2);
}

.btn-cancel {
    padding: 12px 30px;
    background: white;
    color: #5a7a45;
    border: 2px solid #d4e8d0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: #f0fceb;
    border-color: #5a7a45;
}

.btn-secondary {
    padding: 10px 20px;
    background: #5a7a45;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 10px;
}

.btn-secondary:hover {
    background: #2d5016;
}

.btn-remove {
    padding: 10px 20px;
    background: white;
    color: #d32f2f;
    border: 2px solid #d32f2f;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-remove:hover {
    background: #d32f2f;
    color: white;
}

/* Success Message */
.success-message {
    background: #d4f1d4;
    color: #2d5016;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #5a7a45;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .profile-container {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        position: static;
    }
    
    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .nav-item {
        white-space: nowrap;
    }
    
    .profile-content {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .profile-picture-upload {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .profile-container {
        padding: 10px 8px !important;
        gap: 10px !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .profile-content {
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    /* Mobile header: single row matching styles.css */
    .header {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        height: auto !important;
        padding: 6px 10px !important;
        gap: 0 !important;
        align-items: center !important;
    }

    .logo .logo-word {
        display: none !important;
    }

    .logo .logo-text {
        gap: 0 !important;
    }

    .logo .logo-text img {
        width: 28px !important;
        height: 28px !important;
    }

    .header-bottom-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: flex-end;
        gap: 0 !important;
        height: auto !important;
        margin-left: auto !important;
    }

    .user-profile strong {
        display: none !important;
    }

    .user-profile {
        padding: 0 0 0 6px !important;
        gap: 0 !important;
        height: auto !important;
    }

    .profile-pic {
        width: 28px !important;
        height: 28px !important;
    }

    .header-stats {
        padding: 2px 6px !important;
        font-size: 10px !important;
        gap: 4px !important;
    }

    .header-stats span {
        font-size: 10px !important;
    }

    .header-links {
        height: auto !important;
    }

    .header-link {
        padding: 0 6px !important;
        height: auto !important;
        font-size: 0.7rem !important;
        border-right: none !important;
    }

    .profile-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .profile-content h1 {
        font-size: 22px;
    }

    .profile-container {
        padding: 10px 6px;
        gap: 10px;
    }

    .profile-sidebar {
        padding: 12px;
        border-radius: 8px;
    }

    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 6px;
        -webkit-overflow-scrolling: touch;
    }

    .nav-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .sidebar-subnav {
        flex-direction: row;
        overflow-x: auto;
        gap: 4px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .nav-item {
        padding: 8px 12px;
        font-size: 0.78rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .profile-content {
        padding: 16px;
        border-radius: 8px;
    }

    .profile-row {
        grid-template-columns: 1fr !important;
        gap: 12px;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .profile-row > * {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .drop-zone-small {
        min-height: 80px !important;
        padding: 10px !important;
        min-width: 0 !important;
        word-break: break-word;
    }

    .about-myself-col {
        width: 100% !important;
    }

    .about-myself-col textarea {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .form-section h2 {
        font-size: 18px;
    }

    .form-actions {
        flex-direction: column;
        gap: 8px;
    }

    .form-actions button {
        width: 100%;
    }

    .activity-summary {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px;
    }

    .friend-item {
        flex-wrap: wrap;
        gap: 8px;
    }

    .friend-actions {
        width: 100%;
        display: flex;
        gap: 6px;
    }

    .friend-actions button {
        flex: 1;
        font-size: 12px;
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .profile-content {
        padding: 12px;
    }

    .profile-container {
        padding: 8px 4px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }

    .header {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        padding: 6px 8px !important;
        gap: 0 !important;
        align-items: center !important;
    }

    .header-actions {
        flex-direction: column;
        gap: 8px;
    }

    .btn-save-header,
    .btn-cancel-header {
        width: 100%;
        text-align: center;
    }

    .sidebar-nav {
        gap: 4px;
    }

    .nav-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .search-friends {
        flex-direction: column;
    }
}

/* New Profile Row Layout */
.profile-row {
    display: grid;
    grid-template-columns: 100px 280px 1fr;
    gap: 25px;
    align-items: start;
}

.profile-picture-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.current-picture-small {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.btn-remove-small {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

.btn-remove-small:hover {
    background: #d32f2f;
}

.drop-zone-col {
    display: flex;
    flex-direction: column;
}

.drop-zone-small {
    border: 2px dashed #d4e8d0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background-color: #fafffe;
    transition: all 0.3s;
    cursor: pointer;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-zone-small:hover {
    border-color: #5a7a45;
    background-color: #f0f7e8;
}

.drop-zone-content-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.drop-zone-text-small {
    font-size: 14px;
    color: #2d5016;
    margin: 0;
    font-weight: 500;
}

.btn-secondary-small {
    background: #5a7a45;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

.btn-secondary-small:hover {
    background: #2d5016;
}

/* Account Sections Styles */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #2d5016;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.activity-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: #f8fdf6;
    border: 1px solid #d4e8d0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 122, 69, 0.1);
}

.stat-card h3 {
    color: #5a7a45;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    color: #2d5016;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* Friends Sections Styles */
.friends-container {
    margin-top: 20px;
}

.friends-search {
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d4e8d0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background-color: #fafffe;
}

.search-input:focus {
    outline: none;
    border-color: #5a7a45;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(90, 122, 69, 0.1);
}

.friends-list {
    max-height: 400px;
    overflow-y: auto;
}

.empty-friends-message,
.empty-requests-message {
    text-align: center;
    padding: 40px 20px;
    color: #5a7a45;
}

.empty-friends-message p,
.empty-requests-message p {
    font-size: 16px;
    margin-bottom: 20px;
}

.find-friends-container {
    margin-top: 20px;
}

.search-friends {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.search-friends .search-input {
    flex: 1;
}

.search-results {
    min-height: 200px;
    background: #f8fdf6;
    border: 1px solid #d4e8d0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.search-hint {
    color: #5a7a45;
    font-style: italic;
    margin: 0;
}

.friend-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e8f5e9;
    transition: background 0.3s ease;
}

.friend-item:hover {
    background: #f8fdf6;
}

.friend-item:last-child {
    border-bottom: none;
}

.friend-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.friend-info {
    flex: 1;
}

.friend-name {
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 5px;
}

.friend-email {
    color: #5a7a45;
    font-size: 14px;
}

.friend-actions {
    display: flex;
    gap: 10px;
}

.btn-friend {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-accept {
    background: #5a7a45;
    color: white;
}

.btn-accept:hover {
    background: #2d5016;
}

.btn-decline {
    background: #f44336;
    color: white;
}

.btn-decline:hover {
    background: #d32f2f;
}

.btn-add {
    background: #5a7a45;
    color: white;
}

.btn-add:hover {
    background: #2d5016;
}

/* DEPENDENCY: Profile page styling - When changing profile styles, also update:
// - styles.css (global header and common styles)
// - All HTML files that include profile-styles.css
// - JavaScript files that manipulate profile elements
// Member Hierarchy Styles */
.hierarchy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.hierarchy-section {
    background: #f8fdf6;
    border: 1px solid #d4e8d0;
    border-radius: 12px;
    padding: 20px;
}

.hierarchy-section h3 {
    color: #2d5016;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 10px;
}

.hierarchy-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hierarchy-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #5a7a45;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.hierarchy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border: 1px solid #e8f5e9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hierarchy-row:hover {
    background: #f0f7ed;
    transform: translateX(5px);
}

.hierarchy-row.current-level {
    background: #e8f5e9;
    border-color: #5a7a45;
    box-shadow: 0 2px 8px rgba(90, 122, 69, 0.2);
}

.hierarchy-row span:first-child {
    color: #5a7a45;
    font-weight: 500;
    font-size: 14px;
}

.level-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Helper Levels - Unique Colors */
.level-badge.helper { background: #e3f2fd; color: #1976d2; }           /* Blue */
.level-badge.supporter { background: #f3e5f5; color: #7b1fa2; }       /* Purple */
.level-badge.guardian { background: #e8f5e9; color: #388e3c; }        /* Green */
.level-badge.champion { background: #fff3e0; color: #f57c00; }       /* Orange */
.level-badge.samaritan { background: #fce4ec; color: #c2185b; }        /* Pink */
.level-badge.white-knight { background: #e1f5fe; color: #0277bd; }     /* Light Blue */
.level-badge.elite-helper { 
    background: linear-gradient(135deg, #ffd700, #ffed4e); 
    color: #b8860b; 
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Requester Levels - Unique Colors (No Duplicates with Helper) */
.level-badge.requester { background: #f3e5f5; color: #7b1fa2; }       /* Purple */
.level-badge.seeker { background: #e8f5e9; color: #388e3c; }          /* Green */
.level-badge.burdened { background: #ffebee; color: #c62828; }       /* Red */
.level-badge.weathered { background: #fff8e1; color: #f9a825; }      /* Yellow */
.level-badge.maslow { background: #e0f2f1; color: #00796b; }        /* Teal */
.level-badge.damsel { background: #fce4ec; color: #c2185b; }         /* Pink */
.level-badge.elite-requester { 
    background: linear-gradient(135deg, #ffd700, #ffed4e); 
    color: #b8860b; 
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.current-status {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fdf6, #e8f5e9);
    border-radius: 12px;
    border: 2px solid #5a7a45;
}

.current-status h3 {
    color: #2d5016;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.status-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #d4e8d0;
}

.status-label {
    color: #5a7a45;
    font-weight: 600;
    font-size: 14px;
}

.status-value {
    color: #2d5016;
    font-weight: 700;
    font-size: 16px;
}

/* Responsive Design for Hierarchy */
@media (max-width: 768px) {
    .hierarchy-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .status-display {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hierarchy-header {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .hierarchy-row {
        padding: 10px 12px;
    }
    
    .hierarchy-row span:first-child {
        font-size: 13px;
    }
    
    .level-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
}

.about-myself-col {
    display: flex;
    flex-direction: column;
}

.about-myself-col label {
    display: block;
    color: #2d5016;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-myself-col textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d4e8d0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background-color: #fafffe;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s;
    line-height: 1.5;
}

.about-myself-col textarea:focus {
    outline: none;
    border-color: #5a7a45;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(90, 122, 69, 0.1);
}

.upload-hint-small {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    margin-bottom: 0;
    font-style: italic;
}

