/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background-color: #2F4F4F; /* Slate Blue */
    color: white;
    padding: 10px 0;
    text-align: center;
}

header table {
    width: 80%;
    margin: 0 auto;
}

header a {
    color: white;
    text-decoration: none;
}

header img {
    height: 100px;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #808080; /* Medium Gray */
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #696969; /* Dark Gray */
}

/* Main Content */
.main-content {
    width: 80%;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Footer Styles */
footer {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
    background-color: #2F4F4F; /* Slate Blue */
    color: white;
}

/* Ensure the Select2 dropdown displays correctly */
.select2-container .select2-selection--multiple {
    min-height: 38px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
}

.select2-container .select2-selection--multiple .select2-selection__choice {
    margin: 4px 4px 0 0;
    padding: 3px 10px;
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: pointer;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 4px;
    cursor: pointer;
    color: #888;
}

/* Add styles for the message threads */
.message {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.message p {
    margin: 5px 0;
}

.message a {
    display: inline-block;
    margin-top: 10px;
    color: #2F4F4F; /* Slate Blue */
    text-decoration: none;
    font-weight: bold;
}
