/* Notifications Styles */
.rom1-notifications {
    max-width: 800px;
    margin: 0 auto;
}

.rom1-notifications h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.mark-all-read {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.mark-all-read:hover {
    background: #005a87;
}

.notification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-item {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.notification-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.notification-item.unread {
    border-left: 4px solid #0073aa;
    background: #f8f9fa;
}

.notification-item.read {
    opacity: 0.8;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.right-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.title {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.badge {
    background: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.date {
    color: #666;
    font-size: 14px;
}

.thumb {
    margin: 15px 0;
}

.thumb img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.content {
    margin: 15px 0;
    line-height: 1.6;
    color: #555;
}

.actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.actions .button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.actions .button:hover {
    background: #005a87;
}

.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #0073aa;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.pagination .current {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

/* My Account Navigation Menu Styles - Clean & Modern */
.woocommerce-MyAccount-navigation {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 16px;
    margin-bottom: 24px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.woocommerce-MyAccount-navigation li {
    margin: 0;
}

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 14px 18px;
    text-decoration: none;
    color: #000;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
}

.woocommerce-MyAccount-navigation a:hover {
    background: #f9f9f9;
    color: #000;
    border-color: #ddd;
}

.woocommerce-MyAccount-navigation a.is-active {
    background: #ddd;
    color: #000;
    border-color: #ccc;
    font-weight: 500;
}

.woocommerce-MyAccount-navigation a.is-active:hover {
    background: #d0d0d0;
    border-color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation ul {
        gap: 6px;
    }
    
    .woocommerce-MyAccount-navigation a {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .notification-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .actions {
        flex-direction: column;
    }
    
    .actions .button {
        text-align: center;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .woocommerce-MyAccount-navigation {
        background: #2d3748;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    
    .woocommerce-MyAccount-navigation a {
        background: #4a5568;
        color: #e2e8f0;
    }
    
    .woocommerce-MyAccount-navigation a:hover {
        background: #718096;
        color: #f7fafc;
    }
    
    .woocommerce-MyAccount-navigation a.is-active {
        background: linear-gradient(135deg, #0073aa, #005a87);
        color: white;
    }
}


