.event-approval-dashboard {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.dashboard-tools {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

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

.approval-table th {
    background: #2c3e50;
    color: white;
    padding: 10px;
    text-align: left;
}

.approval-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.button {
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
}

.approve { background: #4CAF50; color: white; }
.reject { background: #f44336; color: white; }

.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    background: #eee;
}

.pagination a.active {
    background: #2c3e50;
    color: white;
}