/* Profile Navigation Styles */
.profile-navigation {
    padding: 0;
    position: relative;
    margin: 0;
    background-color: #f7f5f2;
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
    margin: 0 auto;
    height: 80px;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    flex: 1;
    height: 80px;
    border: none;
    cursor: pointer;
    color: #34aba7;
}

.nav-btn:hover {
    color: #56330e;
    text-decoration: none;
}

.nav-btn.nav-disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.nav-btn.nav-previous {
    justify-content: right;
    padding-right: 20px;
}

.nav-btn.nav-next {
    justify-content: left;
    padding-left: 20px;
}

.nav-arrow {
    font-size: 16px;
    font-weight: 600;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e91e63;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation-wrapper {
        height: 70px;
        max-width: 100%;
        margin: 0 20px;
        border-radius: 35px;
        overflow: hidden;
    }
    
    .nav-btn {
        height: 70px;
        font-size: 14px;
    }
    
    .nav-center {
        width: 70px;
        height: 70px;
    }
    
    .nav-previous {
        border-radius: 0;
    }
    
    .nav-next {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .navigation-wrapper {
        height: 60px;
        margin: 0 15px;
        border-radius: 30px;
    }
    
    .nav-btn {
        height: 60px;
        font-size: 13px;
    }
    
    .nav-center {
        width: 60px;
        height: 60px;
    }
    
}