/* General Styles */
body {
    background-color: #f8f9fa;
    color: #212529;
}

/* Notification Styles */
.notifications-header {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}

.notification-filters {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
    white-space: nowrap;
}

.notification-filters::-webkit-scrollbar {
    height: 4px;
}

.notification-filters::-webkit-scrollbar-thumb {
    background-color: #adb5bd;
    border-radius: 4px;
}

.notification-date {
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid #dee2e6;
}

.notification-item {
    background-color: #fff;
    transition: background-color 0.2s ease;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

.notification-item.unread {
    background-color: #f0f7ff;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.notification-time {
    font-size: 0.75rem;
    color: #6c757d;
}

.unread-indicator {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0d6efd;
}

.notification-actions {
    margin-top: 0.75rem;
}

/* Promotional Banner */
.promotional-banner {
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    border-radius: 8px;
    text-align: center;
}

.promotional-banner h5 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.promotional-banner p {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Product Preview */
.product-preview {
    border-radius: 8px;
}

.product-preview img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* Empty State */
.empty-state {
    padding: 3rem 1rem;
}

.empty-icon {
    color: #adb5bd;
}

/* Media Queries for Responsive Design */
@media (min-width: 768px) {
    
    
    .notification-item {
        padding: 1rem 1.5rem;
    }
    
    .icon-circle {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 576px) {
    .notification-actions .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .product-preview {
        flex-direction: column;
    }
    
    .product-preview img {
        margin-bottom: 0.5rem;
        margin-right: 0 !important;
    }
}

/* eBay Logo Styling */
.ebay-logo {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: -1px;
}

.ebay-logo .e {
    color: #e53238;
}

.ebay-logo .b {
    color: #0064d2;
}/* Search Bar Styling */
.form-control {
    border: 2px solid #ccc;
    height: 40px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.logo-search-bar{
    gap: 3rem;
}
/* Responsive adjustments */
@media (max-width: 576px) {
    .logo-search-bar{
        gap: 0.5rem !important;
    }
  .input-icon-search{
    display: flex;
  }
}  

.mb-0{
    font-size: calc(var(--size-texto) + 12px);
    font-weight: 700;
}

.btn-sm{
    font-size: var(--size-texto);
}