/* cal/static/cal/css/styles.css */

.calendar {
    width: 98%;
    margin: auto;
    font-size: 12px;
    font-family: Montserrat;
    color: #98a0a6;
}

.navbar {
    border-bottom: 1px solid rgb(226, 229, 234);
}

.flex {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.calendar tr,
.calendar td {
    border: 1px solid #E8E8E8;
}

.calendar th {
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}

.calendar td {
    width: 200px;
    height: 150px;
    padding: 5px;
}

.disabled {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f9f9fa' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E")
}

.date {
    display: flex;
    margin-bottom: 15px;
    height: 25px;
    justify-content: space-between;
}

.today {
    background: red;
    color: white;
    width: 25px;
    height: 25px;
    text-align: center;
    display: block;
    border-radius: 25px;
    line-height: 25px;
}

.month {
    font-size: 25px;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clearfix {
    margin: 15px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    padding: 6px;
    cursor: pointer;
}

.login-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

li.bugs {
    background: #fef0db;
    margin: 0 0 5px 0;
    color: #fc9b10;
    border-left: 3px solid #fdb44d;
}

li.errors {
    background: rgba(253, 197, 208, 0.7);
    ;
    margin: 0 0 5px 0;
    color: #f8254e;
    border-left: 3px solid #fa607e;
}

li.holiday {
    background: #EAFDE6;
    color: #519548;
    border-left: 3px solid #519548;
}