.custom-checkbox-lg .form-check-input {
    width: 1.5em !important;
    height: 1.5em !important;
    background-size: 1.25em !important;
}

.module-body {
    overflow-y: auto;
    height: calc(100vh - 100px);
    padding: 20px;
}

.dropdown-menu {
    width: auto;
    white-space: nowrap;
}

.dropdown-item {
    display: inline-block;
    padding: 5px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

#reminderButton.animated {
    animation: pulse 0.3s ease-out, bounce 0.6s ease-out;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#reminderButton .fas {
    font-size: 1.5rem;
    color: white;
}

table.table-condensed.table-striped.table-bordered.table-hover .custom-bg td {
    background-color: #ffffcc !important;
}