body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.violation-tracking-wrapper {
    padding: 20px;
}

.violation-tracking {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
}

h1 {
    font-size: 24px;
    color: #333;
    margin-top: 0;
}

.tab-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 14px;
    color: #666;
}

.tab-btn.active {
    color: #006699;
    border-bottom: 2px solid #006699;
}

.action-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.btn {
    padding: 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 5px;
}

.btn-secondary {
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
}

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

th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #333;
}

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

.pagination-btn {
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
}

.pagination-btn.active {
    background-color: #006699;
    color: white;
    border-color: #006699;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
