body {
    font-family: 'Roboto', sans-serif;
    background-color: #e0e0e0;
    margin: 0;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.dashboard-container, .form-container {
    width: 90%;
    max-width: 100%;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: auto;
}
.dashboard-container img, .form-container img {
    width: 241px;
    height: 132px;
    margin-bottom: 2px;
}
.status-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}
.status-box {
    width: 18%;
    background-color: #f4f4f4;
    padding: 7px;
    margin: 7px 0;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    box-sizing: border-box;
    border:dashed;
}
.status-box h3 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}
.status-box p {
    margin: 0;
    font-size: 14px;
}
.total-tasks {
    color: black;
}
.completed-tasks {
    color: green;
}
.pending-tasks {
    color: red;
}
.dashboard-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.dashboard-buttons a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 5px;
    transition: background-color 0.3s;
    width: 30%;
    text-align: center;
    box-sizing: border-box;
}
.create-task-button {
    background-color: #28a745;
    color: #fff;
}
.delete-task-button {
    background-color: #28a745;
    color: #fff;
}
.modify-task-button {
    background-color: #28a745;
    color: #fff;
}
.create-user-button {
    background-color: #007bff;
    color: #fff;
}
.delete-user-button {
    background-color: #007bff;
    color: #fff;
}
.modify-user-button {
    background-color: #007bff;
    color: #fff;
}
.view-tasks-button {
    background-color: #FF4C4C;
    color: #fff;
}
.reminder-sms-button {
    background-color: #FF4C4C;
    color: #fff;
}
.custom-sms-button {
    background-color: #FF4C4C;
    color: #fff;
}
.batch-create-button {
    background-color: #6f42c1;
    color: #fff;
}
.hr-sms-button {
    background-color: #6f42c1;
    color: #fff;
}
.logout-button {
    background-color: #6f42c1;
    color: #fff;
}
.dashboard-buttons a:hover {
    opacity: 0.8;
}
.form-container form input, 
.form-container form textarea, 
.form-container form select, 
.form-container form button {
    margin: 10px 0;
    padding: 10px;
    width: calc(100% - 40px); /* Full width minus padding */
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.form-container form textarea {
    height: 100px;
    resize: none; /* Prevent resizing */
}

.form-container form select {
    height: 45px; /* To match the input and textarea height */
}

.form-container form button {
    background: #007bff;
    width: auto;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-container form button:hover {
    background: #0056b3;
}
.footer {
    margin-top: 20px;
    color: #777;
    text-align: center;
}
@media (max-width: 800px) {
    .status-box {
        width: 45%;
    }
    .dashboard-buttons a {
        width: 45%;
    }
}
@media (max-width: 600px) {
    .status-box {
        width: 100%;
    }
    .dashboard-buttons a {
        width: 100%;
    }
}
