﻿#pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 20px 0;
    gap: 5px;
}

.pagination-button, .pagination-arrow {
    background-color: transparent;
    color: #800080;
    border: none;
    padding: 5px 9px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: 2px solid #800080;
}

    .pagination-button.active {
        background-color: #800080; /* Highlight active page */
        color: #fff;
        font-weight: bold;
        border: 2px solid #800080;
    }

.pagination-arrow {
    border: 2px solid #800080;
    font-weight: bold;
}

    .pagination-button:disabled,
    .pagination-arrow:disabled {
        border: 2px solid #800080;
        cursor: not-allowed;
    }
/* Styling for Edit & Delete Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.btn-edit, .btn-delete {
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-edit {
    background-color: #007bff;
    color: white;
}

    .btn-edit:hover {
        background-color: #0056b3;
    }

.btn-delete {
    background-color: #dc3545;
    color: white;
}

    .btn-delete:hover {
        background-color: #a71d2a;
    }
