﻿/*
    CSS for InnoTech CalEvent User Control.
*/

.it-event-cal-outer-div {
    /* padding: 5px; */
    font-family: arial,Helvetica,Arial,sans-serif;
    font-size: 1em;
    background-color:#ffffff;
}

.it-event-cal-mth-day {
    width: 94px;
    border-right: solid #e0dfdf 1px;
    text-align: center;
    float: left;
}

.it-event-cal-mth-day-month {
    text-transform: uppercase;
    padding-top: 5px;
}

.it-event-cal-mth-day-container {
    display: flex;
    justify-content: center; /* Horizontally centers the circle */
    align-items: center; /* Vertically centers the circle */
    /* background: white; */
    height: 90px;
    width: 90px;
}

.it-event-cal-circle {
    margin: auto;
    width: 60px;
    height: 60px;
    background-color: #3a6bbd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
}

.it-event-cal-event-details {
    padding-top: 5px;
    font-weight: 600;
    width: 60%;
    float: left;
    margin-left: 20px;
}
