﻿.content {
    max-width: 600px;
    margin: auto;
}

.header {
    display: flex;
    margin-bottom:20px;
    align-items: center;
    justify-content: space-between;
    background-image: linear-gradient(180deg, rgb(30 30 30) 40%, #2f0b0b 100%);
    border-radius: .15rem;
    padding: 10px 15px;
    box-shadow: 0px 2px rgb(149 37 37) 0px 5px 6px rgb(13, 13, 13);
}

.sidebar{
    box-shadow: 2px 0px 6px rgb(13, 13, 13);
}

.header-text, .header-text h5 {
    margin-bottom: 0;
}

#calendar{
    background-color: #252525;
    padding: 20px
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgb(255 61 61 / 31%);
}

.fc-theme-standard .fc-scrollgrid, .fc-theme-standard td, .fc-theme-standard th {
    border-color: rgb(149 37 37);
}

.fc .fc-button-primary {
    background-color: #d48001;
    border:none;
    text-transform: uppercase;
}

.fc .fc-button-primary:hover{
    background-color: #eb9413 ;
}

.fc .fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button-primary:not(:disabled):active {
    background-color: #eb9413 ;
    box-shadow: none 
}

.fc .fc-button-primary:focus , .fc .fc-button-primary:focus-visible {
    box-shadow: 0 0 0 0.1rem #ffbc58 
}

.fc .fc-button-primary:disabled {
    background-color: rgba(255, 33, 33, 0.151);
    border:none;
}

.form-control{
    background-color: #3a3a3a;
    color: white;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #161616;
}

.form-floating label{
    color: #f29d3b;
}

.form-floating input{
    background-color: #3a3a3a;
    color: white;
}

.form-floating button{
    background-color: #d48001;
    color: #fff;
}

.form-floating button:hover{
    background-color: #eb9413;
    color: #fff;
}