/* Notifications Page Styles */

/* Pagination Styles */
.page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.page-numbers li {
    display: inline-flex;
}

.page-numbers a,
.page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-numbers a {
    background-color: #f9fafb;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.page-numbers a:hover {
    background-color: #f3f4f6;
    color: #340c73;
    border-color: #d1d5db;
}

.page-numbers span.current {
    background-color: #340c73;
    color: white;
    border: 1px solid #340c73;
}

.page-numbers .prev,
.page-numbers .next {
    padding: 0.5rem 0.75rem;
}

/* Notification Card Hover Effect */
.notification-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notification-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Due Date Badge */
.due-date-badge {
    display: inline-block;
    padding: 0.5rem 0.5rem;
    background-color: #fee2e2;
    color: #ec4404;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
}

/* Single Notification Page */
.single-notification .due-date-badge {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

/* Heading Styles */
.single-notification h1,
.page-template-template-notifications h1,
.single-notification .prose h1,
.page-template-template-notifications .prose h1 {
    color: var(--color-yao-secondary-500, #ec4404);
}

/* Sidebar Styles */
.single-notification .sticky {
    position: sticky;
    top: 2rem;
}

/* Upcoming Notifications in Sidebar */
.single-notification .group:hover {
    background-color: #f9fafb;
    border-radius: 0.25rem;
}

.single-notification .group {
    padding: 0.5rem;
    margin: 0 -0.5rem;
    transition: background-color 0.2s ease;
}

/* Empty State */
.empty-notifications {
    text-align: center;
    padding: 3rem 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.empty-notifications svg {
    margin: 0 auto 1.5rem;
    color: #9ca3af;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-numbers a,
    .page-numbers span {
        min-width: 2rem;
        height: 2rem;
        padding: 0.25rem;
    }
    
    .page-numbers .prev,
    .page-numbers .next {
        padding: 0.25rem 0.5rem;
    }
}