﻿/*Message Book Tabs Styles*/
.nav-tabs .nav-link {
    background-color: #85B1D4 !important;
    color: white !important;
    border: 2px solid transparent !important;
    border-bottom: none !important;
    margin-right: 10px;
}
.nav-tabs .nav-link:hover{
    background-color: white !important;
    border: 2px solid #85B1D4 !important;
    border-bottom: none !important;
    color: #85B1D4 !important;
}

.nav-link.active {
    background-color: white !important;
    border: 2px solid #85B1D4 !important;
    border-bottom: none !important;
    color: #85B1D4 !important;
}
.nav-tabs {
    border: none !important;
    margin-top:25px !important;
    transform:translateY(1px);
}

.tab-content {
    padding: 25px;
    border: 2px solid #85B1D4 !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius:0px 20px 20px 20px;
}

/*Message Book Tables Styles*/
.tables-section {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 20px;
}
.cdp-table {
    background-color: #EDEDED;
    padding: 5px 40px;
    border-radius: 20px;
    overflow-x: auto;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.table td {
    vertical-align: inherit;
}
.table {
    width: 100% !important;
}

.table tr{
    background-color:white;
}
.box{
    height:10px;
    width:10px;
    border: 1px solid black;
}
.priority-normal{
    background-color:white !important;
}
.priority-urgent {
    background-color: #E54B4B !important;
    color: white !important;
}
.priority-school {
    background-color: #FED766 !important;
}
.priority-school-urgent {
    background-color: #A71D31 !important;
    color: white !important;
}
.table th {
    border-top: none;
    border-bottom: 2px solid #85B1D4 !important;
}
th {
    background-color: #EDEDED;
}
th:nth-child(1) {
    width:50px;
}
th:nth-child(2) {
    width: 50px;
}

/*DataTable Styles*/
table.dataTable.no-footer {
    border-bottom: 2px solid #85B1D4 !important;
}

/*Message Book History Styles*/
.message-history {
    background-color: #E9ECEF;
    border-radius: 10px;
    border: solid 1px #CED4DA;
    padding: 10px 10px;
    max-height: 150px;
    height: 150px;
    overflow-y: auto;
}

/*DateTimePicker styles*/
.xdsoft_datepicker {
    width: 341px !important; /*adjust accordingly*/
}
.xdsoft_calendar table, .xdsoft_time_box {
    height: 341px !important; /*adjust accordingly*/
}
.xdsoft_monthpicker {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 10px 0px;
}

/*Autocomplete Styles*/
.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    padding-right: 20px;
} 
/*Modal Styles*/
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 1200px !important;
    }
}

