body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
    justify-content: center;
    /* Center content horizontally */
    align-items: center;
    /* Center content vertically */
    min-height: 100vh;
    background-color: #fff;
}

input {
    width: fit-content;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 3px;
    text-align:center;
}

.welcome-section h2,
p {
    text-align: center;
    margin: 20px;
}

.time-zones,
.to-do-list {
    margin-top: 100px;
}

.col-md-6 {
    padding: 10px;
    /* Adjust padding as needed */
}

.to-do-list {
    width: 100%;
    text-align: center;
}

.to-do-list h1 {
    color: #333;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
}

.to-do-list p {
    color: #555;
    margin: 0;
    font-size: smaller;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.to-do-list #todo-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.to-do-list #todo-list li {
    flex: 1 0 100%;
    /* Ensure each item takes up full width */
    padding: 8px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    /* Ensure padding and border are included in the element's total width and height */
    cursor: pointer;
}

.to-do-list .line-through {
    text-decoration: line-through;
}

.to-do-list #new-item-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.to-do-list #add-button {
    background-color: #333;
    color: white;
    padding: 15px 30px;
    cursor: pointer;
    border: none;
    margin: 0;
}

.to-do-list #new-item {
    background-color: #e6e6e6;
    color: #333;
    padding: 15px 10px;
    cursor: pointer;
    border: none;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #000000;
    margin: 50px 0;
}

.navbar .custom-submit-button {
    margin-left: auto;
    display: block;
}

#upload-form {
    width: 100%;
    text-align: center;
    align-items: center;
}

hr {
    display: block;
    margin-top: 2em;
    margin-bottom: 2em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
}

.container-fluid.mb-3.filter-grid {
    background: rgb(245, 245, 245);
    font-size: 14px;
}

.container-fluid.mb-3.filter-grid h5{
    align-items: center;
    text-align: center;
}

#filterForm col{
    border: 2px solid rgb(0, 255, 21);
    border-radius: 5px;
}

.row.d-flex.justify-content-between.align-items-end h1 {
    text-align: left;
}

.service-area {
    display: flex;             /* Create a horizontal layout */
    justify-content: space-between; /* Add spacing between columns */
    gap: 0px;                 /* Add spacing between columns */
}

.vision-to-vt-table table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}