#button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

#cleaningReportForm button {
    font-size: 1.2em;
    padding: 15px 30px;
    width: 200px; /* Adjust as needed */
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#cleaningReportForm button:hover {
    background-color: #e0e0e0;
}

#cleaningReportForm button[type="submit"] {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

#cleaningReportForm button[type="submit"]:hover {
    background-color: #0056b3;
}

#reporttext{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}


#small-text {
  font-size: 1px;
}


input[type="text"] {
    width: 80%; 
}