html, body {
    margin: 0;
    padding: 0;
    font-family: Ariel, Helvetica Neue, Helvetica, sans-serif;
    font-size: 14px;
}

/* change color of links */
a {
    color: #1992a4;
}

a:hover {
    color: #a6e8f2
}

/* make calandar card so it floats on container */
.calendar-card {
    background-color: white;
    border-radius: 12 px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 15px;
}

/* Formats title for each page */
.custom-title {
    text-align: center;
    padding-top: 20px;
    color: #1992a4
}

/* custom container colors */
.blue-background {
    background-color: #a6e8f2
}

.orange-background {
    background-color: #E8A574
}

/* custom colors for buttons */
.btn-custom-blue {
    background-color: #1992a4;
    color: white;
}

.btn-custom-blue:hover {
    background-color: #a6e8f2;
    color: black;
}

.btn-custom-orange {
    background-color: #e86100;
    color: white;
}

.btn-custom-orange:hover {
    background-color: #E8A574;
    color: black;
}

/* color for navigation bar */
.navbar-custom{
    background-color: #a6e8f2
}

/* unifies the size of the cards for the homepage which have different sized images */
.uniform-cards .card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

/* calendar formatting */
#calendar {
    max-width: 1100px;
    margin: 40px auto;
}

.fc-toolbar-title {
    color: #1992a4 !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.fc-button {
    background-color: #1992a4 !important;
    color: white !important;
}

.fc-button:hover {
    background-color: #a6e8f2 !important;
    color: black !important;
}

/* day of the week headers */
.fc-col-header-cell-cushion {
    color: #1992a4 !important;
    font-weight: bold;
    text-decoration: none !important;
}

/* day numbers */
.fc-daygrid-day-number,
.fc-daygrid-day-number * {
    color: #1992a4 !important;
    font-weight: normal;
    text-decoration: none !important;
}

/* remove underline from any links inside day numbers */
.fc-daygrid-day-number a {
    color: inherit !important;
    pointer-events: none;
    text-decoration: none !important;
}

.fc-day-today {
    background-color: #FFF3E0 !important;
    color: #1992a4 !important;
}