/* Styling for the title (Month and Year) of the calendar */
div.title {
    display: flex;
    justify-content: space-between;
    align-items: center;    
    font: x-large Verdana, Arial, Helvetica, sans-serif;
    text-align: center;
    height: 40px;
    background-color: white;
    color: black;
    }
/* Styling for the overall table */
table {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    }
/* Styling for the column headers (days of the week) */
th {
    padding: 0 0.5em;
    text-align: center;
    background-color:gray;
    color:white;
    }
/* Styling for the individual cells (days) */
td  {     
    font-size: medium;
    padding: 0.25em 0.25em;   
    width: 14%; 
    height: 80px;
    text-align: left;
    vertical-align: top;
    }
/* Styling for the date numbers */
.date  {     
    font-size: medium;
    padding: 0.25em 0.25em;   
    text-align: left;
    vertical-align: top;
    }
/* Class for individual days (coming in future release) */
.sun {
     color:red;
     }
/* Hide the month element (coming in future release) */
th.month {
    visibility: hidden;
    display:none;
    }
.link{
    text-align:center;
    font: 18px monospace;
}
.center-element {
  width: 225px; /* Set an initial width */
}
.left-content {
    display: flex;
    align-items: center;
    margin-left: 35%; /* push to right */
}

.select-container {
    display: flex;
}

.select-container select {
    margin-left: 10px; /* Optional: Add space between selects */
}
