﻿
.view-reports {
    margin: 0 auto;
    width: 98%;
    overflow: visible;
}

@media (min-width: 1200px) {
    .modal-xlg {
        width: 90%;
    }
}

.center {
    margin-left: auto;
    margin-right: auto;
}


/* General Confirmation Box Styling */
.confirmation-box {
    margin-bottom: 20px;
    text-align: center;
    padding: 25px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Header with Icon and Text */
.confirmation-header {
    font-size: 2rem; /* Increased text size */
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
}

    .confirmation-header i {
        font-size: 2.5rem; /* Increased icon size */
        color: #007bff;
    }

/* Buttons Container */
.confirmation-buttons {
    margin-top: 20px;
}

    /* Button Styling */
    .confirmation-buttons .btn {
        padding: 12px 25px;
        font-size: 1.2rem;
        margin: 10px;
        border-radius: 5px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .confirmation-buttons .btn-success {
        background-color: #28a745;
        border: none;
    }

        .confirmation-buttons .btn-success:hover {
            background-color: #218838;
            transform: scale(1.05);
        }

    .confirmation-buttons .btn-danger {
        background-color: #dc3545;
        border: none;
    }

        .confirmation-buttons .btn-danger:hover {
            background-color: #c82333;
            transform: scale(1.05);
        }

/* Adding tick and cross icons directly to buttons */
.icon-text i {
    margin-right: 8px;
    font-size: 1.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .confirmation-box {
        max-width: 95%;
    }

    .confirmation-header {
        font-size: 1.5rem;
    }

    .confirmation-buttons .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}


/* Styling the label */
/* Checkbox list styling */
.custom-checkboxlist {
    display: flex; /* Single-line layout */
    align-items: center;
    margin-right: 20px; /* Spacing between items */
    font-size: 18px; /* Increase text size */
}

/* Individual list item styling */
.custom-checkboxlist .list-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333; /* Text color */
    font-weight: 500;
    margin-right: 30px
}

    /* Styling icons inside list items */
    .custom-checkboxlist .list-item i {
        margin-right: 30px; /* Space between icon and text */
        font-size: 20px; /* Icon size */
    }

    /* Hover effect for list items */
    .custom-checkboxlist .list-item:hover {
        color: #0056b3; /* Text hover color */
    }

        .custom-checkboxlist .list-item:hover i {
            transform: scale(1.2); /* Slightly enlarge icons on hover */
            transition: transform 0.2s ease-in-out;
        }


