/* Modal content styling */
.custom-modal .modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

/* Header with green gradient and white centered text */
.custom-modal .bg-success {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    text-align: center;
    padding: 1rem 0;
    letter-spacing: 0.05em;
}

/* Modal header style */
.custom-modal .modal-header {
    border-bottom: none;
    padding: 1rem 1.5rem;
}
.custom-modal .modal-title {
    font-weight: 700;
    color: #333;
}

/* Modal body padding and text color */
.custom-modal .modal-body {
    padding: 1rem 1.5rem;
    color: #555;
}

/* Form groups with bottom margin for spacing */
.custom-modal .form-group {
    margin-bottom: 1.2rem;
}

/* Inputs styling */
.custom-modal .input_style {
    border-radius: 8px;
    border: 1.5px solid #ced4da;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Inputs focus style */
.custom-modal .input_style:focus {
    border-color: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.5);
    outline: none;
}

/* Modal footer with spaced buttons */
.custom-modal .modal-footer {
    padding: 1rem 1.5rem;
    border-top: none;
    justify-content: flex-start;
    gap: 1rem;
}

/* Submit button styling */
.custom-modal .btn-success {
    background-color: #28a745;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.custom-modal .btn-success:hover {
    background-color: #218838;
}

/* Close button styling */
.custom-modal .btn-secondary {
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.custom-modal .btn-secondary:hover {
    background-color: #6c757d;
    color: white;
}
/*pagination*/
/* Hover effect */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
}
.page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a8e063, #56ab2f);
    color: white;
    font-weight: bold;
    font-size: 16px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Active page */
.page-item.active .page-link {
    background: linear-gradient(135deg, #56ab2f, #379b2b);
}
/* Disabled arrows */
.page-item.disabled .page-link {
    background: linear-gradient(135deg, #56ab2f, #379b2b);
}
