.date-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.hour-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.date-container input {
    text-align: center;
	color: #A6977B !important;
}
.date-container span {
    padding-top: 8px;
}
input:focus {
    outline: 1px solid #3B4B59 !important; /* χρώμα του πλαισίου */
	border-radius: 4px !important;
}
input::placeholder {
    color: #A6977B !important; /* ή όποιο χρώμα θέλεις */
}
/* -------- error-messages under form ----------- */
.red-text {
    display: none;
    color: #F2ECCE; 
    border: 2px solid red;
    padding: 10px;
    font-weight: bold;
    border-radius: 10px;
    background-color: red; /* Κόκκινο φόντο */
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.red-text.active {
    display: inline-block;
    opacity: 1;
}




