body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #f8cb97;
    padding: 20px;
    text-align: center;
    font-weight: bolder;
}

.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
    height: 200px;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.calendar-table th,
.calendar-table td {
  text-align: center;
  vertical-align: middle;
  padding: 10px;
}

.calendar-table thead th {
    background-color: #e28a4e;
    color: white;
}

.text-danger a {
    display: inline-flex;          
    align-items: center;            
    justify-content: center;        
    width: 36px;                    
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    box-sizing: border-box;
    transition: all .5s ease;
    background-color: red;
}

.text-danger a:hover {
    background-color: rgb(243, 80, 80);
}

#holiday {
    position: relative;
    cursor: pointer;
}

#holiday::after {
    content: attr(data-holiday);
    position: absolute;
    bottom: 70%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 12px;
    z-index: 10;
}

#holiday:hover::after {
    opacity: 1;
}


#holiday::before {
    content: "";
    position: absolute;
    bottom: 60%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#holiday:hover::before {
    opacity: 1;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 20pt;
    font-weight: bolder;
    background-color: rgb(10, 10, 36);
    border-radius: 30px 30px 0 0;
}

.nav-links a {
    font-size: 30pt;
    text-decoration: none;
    color: #f0f0f0;
    transition: 0.5s;
}

.nav-links p {
    flex: 1;
    text-align: center; 
    font-size: 30pt;
    color: #f0f0f0;
    margin: 0;
}

.nav-links a:hover {
    color: #707070;
}

.numOfWeeks {
    background-color: rgb(10, 10, 36);
    color: white;
}

