/* styles.css */

/* General styles for dark theme */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
}

h2, h4 {
    color: #ffffff;
}

a {
    color: #61dafb;
}

a:hover {
    color: #21a1f1;
}

.flashes {
    list-style: none;
    padding: 0;
}

.flashes li {
    background-color: #333;
    color: #e0e0e0;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

form label {
    display: block;
    margin-bottom: 5px;
    color: #e0e0e0;
}

form input[type="text"],
form input[type="password"],
form textarea,
form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #333;
    color: #e0e0e0;
    border: 1px solid #555;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background-color: #61dafb;
    color: #121212;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #21a1f1;
}

/* Styles for multi-select */
select[multiple] {
    width: 100%;
    height: auto;
    padding: 5px;
    background-color: #282c34;
    color: white;
    border: 1px solid #555;
    border-radius: 4px;
}

select[multiple] option {
    background-color: #20232a;
    color: white;
    padding: 5px;
    border: 1px solid #555;
    border-radius: 4px;
    margin: 2px;
}

.incident-type {
    margin-top: 20px;
}

.incident-type h4 {
    margin-bottom: 10px;
    color: white;
}

/* Select2 styles for dark theme */
.select2-container--default .select2-selection--multiple {
    background-color: #282c34;
    color: #e0e0e0;
    border: 1px solid #555;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #20232a;
    color: #e0e0e0;
    border: 1px solid #555;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #e0e0e0;
}

.select2-container--default .select2-selection--multiple .select2-search__field {
    background-color: #282c34;
    color: #e0e0e0;
}

.select2-container--default .select2-results__option {
    background-color: #20232a;
    color: #e0e0e0;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: #333;
    color: #e0e0e0;
}
