/* Sticky footer styles */
html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px; /* Margin bottom by footer height */
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Fixed height of the footer */
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
}

/* Form styles */
.form-group {
    margin-bottom: 1rem;
}

/* Required field indicator */
.form-group label.required:after {
    content: " *";
    color: red;
}

/* Select2 Custom Styling */
.select2-container {
    min-width: 200px !important;
}

.select2-container--default .select2-selection--multiple {
    border-color: #ced4da !important;
    min-height: 38px !important;
    padding: 2px !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #0d6efd !important;
    border: none !important;
    color: white !important;
    border-radius: 4px !important;
    padding: 2px 20px 2px 8px !important; /* Increased right padding for X button */
    margin: 4px 4px !important;
    position: relative !important; /* For absolute positioning of X button */
}
/* Select2 Custom Styling */
.select2-container {
    min-width: 200px !important;
}

.select2-container--default .select2-selection--multiple {
    border-color: #ced4da !important;
    min-height: 38px !important;
    padding: 2px !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #0d6efd !important;
    border: none !important;
    color: white !important;
    border-radius: 4px !important;
    padding: 2px 8px !important;
    margin: 4px 4px !important;
    position: relative !important;
    padding-left: 20px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    position: absolute !important;
    left: 2px !important;
    top: 2px !important;
    color: white !important;
    border: none !important;
    padding: 0 4px !important;
    border-radius: 2px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-right: 10px !important;
    font-size: 1.2em !important;
    color: #6c757d !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
    margin-top: 7px !important;
    margin-left: 4px !important;
}

.select2-dropdown {
    border-color: #ced4da !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0d6efd !important;
}

.tag-cell {
    min-width: 300px !important;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}