﻿
.task_calendar_section {
    display: flex; 
    flex-wrap: wrap;
}
table.calendar-table {
    border-collapse: separate;
    border-spacing: 5px;
    border: 1px solid #dcdcdc;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 2px 5px 4px #e4e4e4;
    margin-right: 10px;
    display: flex;
    margin-bottom: 10px;
}
table.calendar-table:last-child{
    margin-right:0;

}

    table.calendar-table tbody tr th {
        display: table-cell;
        vertical-align: inherit;
        font-weight: bold;
        text-align: center !important;
        font-size: 14px;
        padding-bottom: 5px;
        border-bottom: 1px solid #ccc;
    }
.calendar-header{margin-top:20px}
table .calendar-day {
    padding:2px 5px;
    border-radius: 100px;
    /*background: #ccc;*/
    cursor: pointer;
    color:#1e7194;
}

.calendar-table .calendar-header-day {
    padding: 2px 5px;
    font-size: 12px;
    text-transform: uppercase;
    /*background: #1e7194;*/
    color: #1e7194;
    font-weight:600;
    border-radius: 2px;
}
table .calendar-day{
    font-size:12px;
}
table .calendar-day.disabled {
    color: #c5c3c3;
    cursor: not-allowed;
}
.selecteddate {
    /*background: cyan;*/
    /*border: 1px solid #d8d8d8;*/
    /*color: #1e7194;*/
    height: 8px;
    -moz-border-radius: 75px;
    -webkit-border-radius: 75px;
    width: 8px;
    color: white;
}


table .calendar-day.selecteddate {
    color: #ed1e8b;
    font-weight:bold;
}
