
.volunteer-form select {
	background: transparent !important;
	border-bottom: 1px solid #fff !important;
	padding: 10px 0 !important;
	color: #fff !important;
	width: 100% !important;
	font-weight: 600 !important;
	font-size: 14px !important;
}
.volunteer-form select option {
	background-color: blue !important !important;
}
.chat-icon {
    position: fixed;
    bottom: 50px;
    right: 15px;
    background: #007bff;
    color: white;
    padding: 15px;
    border-radius: 100%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, background 0.3s;
    z-index: 9999; /* Toujours au-dessus */
}
.chat-icon:hover {
    transform: scale(1.1);
    background: #0056b3;
}
.chat-box {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9998; /* Toujours au-dessus des autres contenus */
}
.chat-header {
    background: #007bff;
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
.coloree {
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
}
.coloree:hover {
    color: #ffdddd;
}
.chat-form {
    padding: 15px;
    display: flex;
    flex-direction: column;
}
.chat-form input {
    margin: 8px 0;
    padding: 12px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
.chat-form button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}
.chat-form button:hover {
    background: #0056b3;
}
.chat-messages {
    height: 250px;
    overflow-y: auto;
    padding: 10px;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
}
.user-message {
    align-self: flex-end;
    background: #007bff;
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 80%;
    margin: 5px;
}
.admin-message {
    align-self: flex-start;
    background: #eee;
    color: #333;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 80%;
    margin: 5px;
}
.chat-input {
    display: flex;
    padding: 10px;
    background: white;
    border-top: 1px solid #ccc;
}
textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
.chat-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
.chat-input button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 5px;
    transition: background 0.3s ease-in-out;
}
.chat-input button:hover {
    background: #0056b3;
}

@media (max-width: 400px) {
    .chat-box {
        width: 90%;
        right: 5%;
    }
}
