body {
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    background-color: #f4f3ef;
}

.card {
    border: none;
    border-radius: 12px;
    margin-bottom: 30px;
}

.card-body {
    padding: 25px;
}

/* FullCalendar Customization */
#calendar {
    background: white;
}

.fc .fc-toolbar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #252422;
}

.fc .fc-button-primary {
    background-color: #51cbce;
    border-color: #51cbce;
    font-weight: 600;
    text-transform: capitalize;
}

.fc .fc-button-primary:hover,
.fc .fc-button-primary:not(:disabled):active {
    background-color: #31bfc3;
    border-color: #31bfc3;
}

.fc .fc-button-primary:focus {
    box-shadow: none !important;
}

.fc-event {
    cursor: pointer;
    border: none !important;
    padding: 2px 4px !important;
    border-radius: 4px !important;
}

.fc-event-work {
    background-color: #dbf2f2 !important;
    color: #2bc1c5 !important;
    border-left: 3px solid #51cbce !important;
}

.fc-event-off {
    background-color: #f4f3ef !important;
    color: #66615b !important;
    border-left: 3px solid #66615b !important;
}

.fc-day-today {
    background-color: #f4f3ef !important;
}

.fc-col-header-cell {
    background-color: #f4f3ef;
    padding: 10px 0 !important;
    color: #9a9a9a;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Modal Customization */
.modal-content {
    border: none;
    border-radius: 12px;
}

.modal-header {
    border-radius: 12px 12px 0 0;
}

.form-control {
    background-color: #fff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    color: #66615b;
    line-height: normal;
    font-size: 14px;
    transition: all 300ms linear;
}

.form-control:focus {
    border-color: #51cbce;
    box-shadow: none;
}

.btn-primary {
    background-color: #51cbce;
    border-color: #51cbce;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #31bfc3;
    border-color: #31bfc3;
}