/* Profile Container */
.profile-container-unique {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--background-color);
    color: var(--text-color);
    border-radius: 15px 15px 0 0;
    border: 2px solid var(--background-color);
    box-shadow: var(--box-shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Profile Menu */
.profile-menu-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

#profile-menu-btn {
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#profile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.profile-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    min-width: 160px;
    overflow: hidden;
}

.profile-dropdown-menu.show {
    display: block;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #fff;
    font-size: 0.9rem;
}

.profile-menu-item:hover {
    background-color: #3a3a3a;
}

.profile-menu-item i {
    font-size: 1rem;
    width: 16px;
}

.profile-menu-item-disabled {
    color: #888;
    cursor: not-allowed;
}

.profile-menu-item-disabled:hover {
    background-color: transparent;
}

/* Profile Header */
.profile-header-edit {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 3rem;
    width: 100%;
}

.profile-header-edit h1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-bottom: 0.3rem;
    margin: 0;
    font-size: 1.5rem;
    height: fit-content;
}

/* Avatar Container */
.follow-avatar-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 200px;
    gap: 0.5rem;
}

.profile-avatar-edit {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    object-fit: cover;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.profile-avatar-edit:hover {
    transform: scale(1.05) rotate(3deg);
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    justify-content: center;
    display: flex;
    align-items: center;
}

.avatar-container-vv {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.user-name-in-small-screen {
    display: none;
}

/* Profile Actions */
.profile-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.follow-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid #ffa500;
    border-radius: 20px;
    background: var(--sidebar-secondary-bg-color);
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.follow-btn:hover {
    background: var(--primary-hover-color);
}

.follow-btn.following {
    background: var(--primary-hover-color) !important;
}

.follow-btn.following:hover {
    background: var(--error-color);
}

.tip-btn {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 1rem;
    border: 2px solid #ffa500;
    border-radius: 20px;
    background: var(--sidebar-secondary-bg-color);
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tip-btn:hover {
    background: #ffa500;
    color: #000;
}

/* Follower Stats */
.follower-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-wrap: nowrap;
}

.Follow-stat-value {
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.5px;
    cursor: pointer;
}

/* Tip Modal */
.tip-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.tip-modal-content {
    position: relative;
    background-color: var(--sidebar-secondary-bg-color);
    margin: 10% auto;
    padding: 0;
    border: 2px solid #ffa500;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    animation: tip-modalSlideIn 0.3s ease;
}

@keyframes tip-modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tip-modal-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: white;
    border-radius: 13px 13px 0 0;
    overflow: hidden;
}

.tip-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.tip-heart-icon {
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.tip-modal-header h3 {
    margin: 0;
    font-weight: 700;
}

.tip-modal-close {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.tip-modal-body {
    padding: 1rem;
}

.tip-modal-body p {
    margin: 0 0 1rem 0;
    color: var(--text-color);
    text-align: center;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--sidebar-bg-color);
    border: 2px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.2s ease;
}

.support-link:hover {
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
    transform: translateX(5px);
}

.support-icon {
    font-size: 20px;
    color: #ffa500;
    min-width: 20px;
}

.support-link span {
    flex: 1;
}

.support-link .fas {
    font-size: 16px;
    opacity: 0.7;
}

.support-link[data-platform="paypal"] .support-icon {
    color: #0070ba;
}

.support-link[data-platform="patreon"] .support-icon {
    color: #ff424d;
}

.support-link[data-platform="kofi"] .support-icon {
    color: #ff5e5b;
}

.support-link[data-platform="subscribestar"] .support-icon {
    color: #ffa500;
}

/* Profile Header Content */
.profile-header-content {
    flex-grow: 1;
    padding-left: 1.5rem;
}

/* Level System */
.level-system {
    margin: 1rem 0;
}

.level-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.profile-progress-bar {
    height: 12px;
    background-color: var(--progress-bar-bg);
    border-radius: 6px;
    overflow: hidden;
}

.profile-progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

/* User Stats Grid */
.profile-stats-grid {
    text-wrap: nowrap;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.profile-stat-item {
    display: flex;
    color: var(--text-color);
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-align: center;
    padding: 0.3rem 0.5rem;
    cursor: pointer;
    gap: 0.5rem;
    background: var(--sidebar-secondary-bg-color);
    border-radius: 8px;
    border: 1px solid var(--input-border-color);
}

.stat-value {
    font-size: 1.5em;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9em;
    color: var(--text-muted-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Profile Details */
.profile-details {
    margin-top: 1.3rem;
    width: 100%;
}

.profile-details i {
    color: var(--novel-metric-icon);
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

.profile-details p {
    font-size: 1.1em;
    color: var(--text-muted-color);
    margin: 10px 0;
    line-height: 1.5;
    white-space: pre-line;
    overflow-wrap: break-word;
    word-break: break-word;
}

.profile-details strong {
    color: var(--novel-metric-icon);
    margin-right: 8px;
    font-weight: 600;
}

/* Edit Profile Modal */
.edit-profile-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
    animation: fadeIn 0.2s ease-out;
}

.edit-profile-modal-content {
    position: relative;
    background: var(--sidebar-secondary-bg-color);
    margin: 3% auto;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.edit-profile-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.edit-profile-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    letter-spacing: -0.5px;
    position: relative;
}

.edit-profile-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover-color));
    border-radius: 2px;
}

.edit-profile-modal-close {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 300;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
}

.edit-profile-modal-close:hover {
    background: rgba(var(--primary-color-rgb), 0.15);
    color: var(--primary-color);
}

.bio-edit-form {
    padding: 1rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-v2 #username-feedback {
    margin-top: -0.5rem;
}

.form-group-v2 label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    opacity: 0.9;
}

.form-group-v2 .form-control,
.form-group-v2 textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group-v2 textarea {
    min-height: 150px;
    font-family: inherit;
}

.form-group-v2 .form-control:focus,
.form-group-v2 textarea:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

#username-feedback {
    font-size: 0.85rem;
    padding: 4px 0;
    font-weight: 500;
    min-height: 0;
    display: none;
}

#username-feedback:not(:empty) {
    display: block;
    min-height: 20px;
}

.avatar-upload-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.avatar-upload-v2 label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover-color));
    border-radius: 12px;
    cursor: pointer;
    color: white;
    padding: 0.7rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.25);
}

.avatar-upload-v2 label:hover {
    background: linear-gradient(135deg, var(--primary-hover-color), var(--primary-color));
    box-shadow: 0 6px 16px rgba(var(--primary-color-rgb), 0.35);
}

.avatar-upload-v2 label::before {
    content: '📸';
    font-size: 1.2em;
}

.avatar-upload-v2 input[type="file"] {
    display: none;
}

.avatar-upload-v2 small {
    color: rgba(var(--text-color-rgb), 0.6);
    font-size: 0.8rem;
    margin-top: -4px;
}

.form-actions {
    display: flex;
    gap: 1rem;
}

.form-actions .btn {
    flex: 1;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover-color));
    color: white;
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.25);
}

.form-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.form-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover-color), var(--primary-color));
    box-shadow: 0 6px 16px rgba(var(--primary-color-rgb), 0.35);
}

.form-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Warning Messages */
.novel-warning {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.novel-warning .warning-icon {
    color: #dc3545;
    font-size: 1.1em;
    padding-right: 0;
    margin-right: 0;
}

.novel-warning .warning-text {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Series/Books Section */
.series-books {
    margin-top: 1.3rem;
    width: 100%;
}

.series-books h2 {
    text-wrap: nowrap;
    padding-bottom: 10px;
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--primary-color);
}

.series-container {
    position: relative;
    display: flex;
    align-items: center;
}

.series-scroll-container {
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.series-scroll-container::-webkit-scrollbar {
    display: none;
}

.series-grid {
    display: flex;
    gap: 1.1rem;
    padding: 1rem 0;
}

.series-card {
    display: flex;
    flex-direction: row;
    min-width: 340px;
    min-height: 180px;
    max-width: 400px;
    max-height: 180px;
    background-color: var(--sidebar-secondary-bg-color);
    border-radius: 10px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.novel-stat-pulse {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.completed-pulse,
.ongoing-pulse {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.completed-pulse {
    background-color: #FF5722;
}

.ongoing-pulse {
    background-color: #4CAF50;
}

.series-card .series-picture {
    width: 130px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main_card_info {
    padding: 0 15px;
    overflow: hidden;
}

.main_card_info h3 {
    font-size: 1.2em;
    color: var(--primary-color);
    padding: 0.5rem 0.5rem 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 0;
    text-align: left;
    text-decoration: none;
}

.main_card_info a {
    text-decoration: none;
}

.user-info-vv {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--primary-color);
    cursor: default;
}

.series-author-v2 {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
    text-align: left;
}

.draft-profile-holder {
    margin: 0.5rem 0;
}

.novel-draft-profile {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 0.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.novel-metrics-v2 {
    display: flex;
    justify-content: flex-start;
    gap: 0.7rem;
    padding: 0.5rem 0;
}

.novel-metric-v2 {
    display: flex;
    align-items: center;
    font-size: 0.7em;
}

.novel-metric-v2 i {
    color: var(--novel-metric-icon);
}

.novel-metric-v2 span {
    margin-left: 5px;
}

.description-container {
    position: relative;
}

.description-v2 {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
    line-height: 1.5;
}

.see-more {
    font-size: 0.9rem;
    color: var(--novel-metric-icon);
}

.see-more:hover {
    text-decoration: underline;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: var(--text-color);
    background-color: rgba(255, 140, 0, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.scroll-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.scroll-left {
    left: -20px;
}

.scroll-right {
    right: -20px;
}

/* Empty State */
.empty-state {
    width: 100%;
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted-color);
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.empty-state-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-muted-color);
}

.empty-state-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.empty-state-button:hover {
    background: var(--primary-hover-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Tablet View */
@media (max-width: 1024px) {
    /* Main Container */
    .profile-container-unique {
        width: 100%;
    }
    
    /* Settings Icon */
    .profile-container-unique .profile-menu-container {
        right: 10px;
        top: 10px;
    }
    #profile-menu-btn:hover {
        background-color: transparent;
        color: var(--primary-color);
    }
    
    /* Profile Header */
    .profile-header-edit {
        flex-direction: column;
        align-items: center;
        padding-bottom: 1rem;
        gap: 0;
    }
    
    /* Avatar Container */
    .follow-avatar-container {
        width: 100%;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 1.3rem;
    }
    
    .profile-avatar-edit {
        width: 120px;
        height: 120px;
    }
    
    /* Username Display */
    .user-name-in-small-screen {
        display: block;
        padding: 0;
        border-bottom: none;
    }
    
    .user-name-in-big-screen {
        display: none;
    }
    
    /* Profile Content */
    .profile-header-content {
        width: 100%;
        padding: 0;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    /* Main Container */
    .profile-container-unique {
        padding: 1.5rem 1.3rem;
        gap: 0.2rem;
    }
    
    /* Profile Details */
    .profile-details {
        margin: 0;
    }
    
    /* Follow Button */
    .follow-btn:hover {
        background: none;
    }
    
    .follow-btn.following:hover {
        background: none;
    }
    
    /* Edit Profile Modal */
    .edit-profile-modal-header {
        padding: 0.8rem;
    }
    
    .edit-profile-modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.7rem;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    /* Series/Books Section */
    .series-books {
        margin: 0;
    }
    
    .series-books h2 {
        font-size: 1.1rem;
        padding-bottom: 5px;
    }
    
    .series-grid {
        gap: 1rem;
    }
    
    .scroll-btn {
        display: none;
    }
    
    .series-scroll-container {
        scrollbar-width: thin;
        scrollbar-color: var(--scrollbar-thumb-bg) var(--scrollbar-track-bg);
    }
    
    .series-scroll-container::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        display: block;
    }
    
    .series-scroll-container::-webkit-scrollbar-track {
        background: var(--scrollbar-track-bg);
        border-radius: 10px;
    }
    
    .series-scroll-container::-webkit-scrollbar-thumb {
        background-color: var(--scrollbar-thumb-bg);
        border-radius: 10px;
        transition: background-color 0.3s ease;
    }
    
    .series-scroll-container::-webkit-scrollbar-thumb:hover {
        background-color: var(--scrollbar-thumb-hover-bg);
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    /* Main Container */
    .profile-container-unique {
        padding: 1rem 0.7rem;
        align-items: center;
    }
    
    /* Profile Details */
    .profile-details p {
        font-size: 1rem;
    }
    
    /* Profile Stats */
    .profile-stats-grid {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Edit Profile Modal */
    .edit-profile-title {
        font-size: 1.2rem;
    }
    
    .bio-edit-form {
        padding: 0.8rem;
        gap: 0.8rem;
    }
}

@media (max-width: 390px) {
    /* Edit Profile Modal */
    .edit-profile-modal-header {
        padding: 0.6rem 0.8rem 0.75rem;
    }
}