/* 通知管理相关页面样式 */

/*
.notifications-container {
    background-color: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}
*/

.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.notifications-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.notification-actions {
    display: flex;
    gap: 10px;
}

.notification-filter {
    padding: 8px 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    background-color: white;
}

.notification-table {
    width: 100%;
    border-collapse: collapse;
}

.notification-table th, .notification-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.notification-table th {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

.notification-table tr:hover {
    background-color: rgba(52, 152, 219, 0.05);
}

.notification-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-pending {
    background-color: var(--warning-color);
    color: white;
}

.status-sent {
    background-color: var(--success-color);
    color: white;
}

.status-failed {
    background-color: var(--danger-color);
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 5px;
}
