 .profile-container {
    padding: 20px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar Wrapper */
.sidebar-wrapper {
    position: relative;
}

.profile-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: sticky;
    top: 20px;
    margin-bottom: 25px;
}

.profile-header {
    background: linear-gradient(135deg, #0CACB4, #0a9da5);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0CACB4;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-email {
    font-size: 0.9rem;
    opacity: 0.9;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    background: white;
    border-bottom: 1px solid #eaeaea;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0CACB4;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
}

.sidebar-menu {
    padding: 0;
    list-style: none;
    margin: 0;
}

.menu-item {
    border-bottom: 1px solid #eaeaea;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #334155;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu-link:hover, .menu-link.active {
    background-color: #f8fafc;
    color: #0CACB4;
    border-left: 4px solid #0CACB4;
}

.menu-link i {
    width: 24px;
    margin-right: 12px;
    font-size: 1.1rem;
}

.menu-badge {
    margin-left: auto;
    background: #0CACB4;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
}

/* Responsive Sidebar Styles */
.sidebar-toggle-btn {
    display: none;
    background: #0CACB4;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    width: 100%;
    text-align: left;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.sidebar-toggle-btn:hover {
    background: #0a9da5;
}

.sidebar-toggle-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .profile-container {
        padding: 20px 0px; /* Mobile e left-right padding 0px */
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .profile-container {
        padding: 15px 0px; /* Choto mobile e padding kom */
    }
}

/* Mobile Styles */
@media (max-width: 991px) {
    .sidebar-toggle-btn {
        display: flex;
    }
    
    .sidebar-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        z-index: 9999;
        transition: left 0.3s ease;
        background: white;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .sidebar-wrapper.show {
        left: 0;
    }
    
    .profile-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 0;
        border-radius: 0;
        box-shadow: none;
        height: 100%;
        overflow-y: auto;
    }
    
    /* Overlay */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .sidebar-overlay.show {
        display: block;
        opacity: 1;
    }
    
    /* Main content adjustment */
    .main-content-wrapper {
        width: 100%;
        transition: margin-left 0.3s ease;
    }
    
    /* Make sidebar more compact on mobile */
    .profile-header {
        padding: 20px 15px;
    }
    
    .profile-avatar {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .profile-name {
        font-size: 1.1rem;
    }
    
    .profile-email {
        font-size: 0.8rem;
    }
    
    .menu-link {
        padding: 14px 15px;
        font-size: 0.9rem;
    }
    
    .menu-link i {
        width: 20px;
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .profile-stats {
        padding: 10px 0;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}






.profile-content {
    padding: 24px 2px;
}

.content-header {
    margin-bottom: 24px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 12px;
}

.middle-section-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Responsive Title */
@media (max-width: 768px) {
    .middle-section-title {
        font-size: 1.3rem;
    }
}

/* Wishlist Cards */
.wishlist-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

@media (min-width: 768px) {
    .wishlist-card {
        padding: 20px;
        margin-bottom: 20px;
    }
}

.wishlist-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-color: #d0d7dd;
}

.wishlist-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

@media (min-width: 480px) {
    .wishlist-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.wishlist-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #64748b;
    letter-spacing: 0.3px;
}

@media (min-width: 768px) {
    .wishlist-title {
        font-size: 1rem;
    }
}

.wishlist-date {
    color: #94a3b8;
    font-size: 0.75rem;
    margin-top: 4px;
}

@media (min-width: 768px) {
    .wishlist-date {
        font-size: 0.85rem;
    }
}

.wishlist-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-block;
    width: fit-content;
}

@media (min-width: 768px) {
    .wishlist-badge {
        font-size: 0.75rem;
    }
}

/* Responsive Details Section */
.wishlist-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

@media (min-width: 640px) {
    .wishlist-details {
        flex-direction: row;
        gap: 20px;
    }
}

.wishlist-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #e9ecef;
}

@media (min-width: 640px) {
    .wishlist-image {
        width: 140px;
        height: 95px;
    }
}

.wishlist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wishlist-image:hover img {
    transform: scale(1.05);
}

.wishlist-info {
    flex: 1;
}

.car-model {
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .car-model {
        font-size: 1.1rem;
    }
}

.car-specs {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

@media (min-width: 768px) {
    .car-specs {
        font-size: 0.9rem;
    }
}

.car-specs i {
    width: 16px;
    color: #0CACB4;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .car-specs i {
        width: 18px;
        font-size: 0.8rem;
    }
}

.car-specs span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.car-price {
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .car-price {
        font-size: 1rem;
    }
}

.car-price strong {
    font-size: 1.1rem;
    color: #0CACB4;
}

@media (min-width: 768px) {
    .car-price strong {
        font-size: 1.2rem;
    }
}

.negotiable-badge {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* Responsive Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .info-table {
        font-size: 0.9rem;
    }
}

.info-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e9ecef;
}

@media (max-width: 480px) {
    .info-table td {
        padding: 8px 10px;
    }
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table td:first-child {
    font-weight: 500;
    color: #475569;
    width: 40%;
}

@media (max-width: 480px) {
    .info-table td:first-child {
        width: 45%;
    }
}

.info-table td:last-child {
    color: #1e293b;
    text-align: right;
}

/* Responsive Action Buttons */
.user-action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.btn-sm-custom {
    padding: 8px 12px;
    font-size: 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    flex: 1 1 auto;
    min-width: 90px;
}

@media (min-width: 640px) {
    .btn-sm-custom {
        flex: 0 1 auto;
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: auto;
    }
}



.btn-sm-custom i {
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .btn-sm-custom i {
        font-size: 0.8rem;
    }
}

.btn-outline-primary-custom {
    background: transparent;
    border-color: #0CACB4;
    color: #0CACB4;
}

.btn-outline-primary-custom:hover {
    background: #0CACB4;
    color: white;
}

.btn-outline-secondary-custom {
    background: transparent;
    border-color: #94a3b8;
    color: #64748b;
}

.btn-outline-secondary-custom:hover {
    background: #64748b;
    border-color: #64748b;
    color: white;
}

.btn-success-custom {
    background: #10b981;
    color: white;
    border: none;
}

.btn-success-custom:hover {
    background: #059669;
}

.btn-danger-custom {
    background: #ef4444;
    color: white;
    border: none;
}

.btn-danger-custom:hover {
    background: #dc2626;
}

/* Responsive Empty State */
.empty-wishlist {
    text-align: center;
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #e2e8f0;
}

@media (min-width: 768px) {
    .empty-wishlist {
        padding: 60px 20px;
    }
}

.empty-wishlist i {
    font-size: 2.5rem;
    color: #94a3b8;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .empty-wishlist i {
        font-size: 3rem;
    }
}

.empty-wishlist h4 {
    color: #475569;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .empty-wishlist h4 {
        font-size: 1.4rem;
    }
}

.empty-wishlist p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Alert Messages */
.alert {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .alert {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

.alert-success {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.alert i {
    font-size: 1rem;
}

/* Pagination Responsive */
.pagination {
    flex-wrap: wrap;
    gap: 5px;
}

.pagination .page-link {
    padding: 6px 10px;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .pagination .page-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .user-action-buttons,
    .sidebar,
    .content-header,
    .pagination {
        display: none !important;
    }
    
    .wishlist-card {
        break-inside: avoid;
        border: 1px solid #000;
        box-shadow: none;
    }
}


/* Message box css */
.inquiry-message-box {
    background: #fff8e1;
    border-left: 5px solid #ff9800;
    padding: 15px;
    border-radius: 6px;
}

.message-header {
    font-size: 14px;
    color: #e65100;
    margin-bottom: 8px;
}

.message-body {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.message-user-info {
    color: #666;
}