html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

body {
    background-color: #f5f5f5;
}

.container-w95 {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-top: 4px solid #fac863;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1);
}

.btn {
    border-radius: .35rem;
}

.color-picker {
    display: grid;
    grid-template-columns: repeat(10, 1fr); /* 10 columns */
    gap: 5px; /* Gap between boxes */
    margin-bottom: 10px; /* Space below the color picker */
}

.color-box {
    width: 30px; /* Width of each color box */
    height: 30px; /* Height of each color box */
    cursor: pointer; /* Change cursor on hover */
    border: 2px solid transparent; /* Border for active state */
    transition: border 0.3s; /* Smooth transition for border */
}

    .color-box:hover {
        border: 2px solid #333; /* Border color on hover */
    }

.ec-event-title {
    font-size: 1em;
    line-height: 1.5;
}

.ec-title {
    font-weight: normal;
}

.ec.ec-month-view {
    height: 400px;
}

.ec-toolbar,
.ec-toolbar > *,
.ec-toolbar > * > * {
    margin-top: 0;
    margin-bottom: 0;
}

.ec-month-view {
    height: 800px;
}

.ec-button {
    background-color: #2c3e50;
    border: 2px solid #2c3e50;
    color: #fff;
    font-weight: bold;
    margin: 10px 5px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .ec-button:hover {
        background-color: #fff;
        border: 2px solid #2c3e50;
        color: #2c3e50;
        font-weight: bold;
        box-shadow: none !important;
    }

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

    .ec-button:disabled {
        background-color: #2c3e50;
        border: 2px solid #2c3e50;
        color: #fff;
        opacity: 0.65;
    }

    .ec-button:not(:disabled) {
        cursor: pointer;
    }

        .ec-button.ec-active,
        .ec-button:not(:disabled):hover {
            background-color: #fff;
            border: 2px solid #2c3e50;
            color: #2c3e50;
            font-weight: bold;
            z-index: 1;
        }

.ec-icon.ec-next:after,
.ec-icon.ec-prev:after {
    border-right: 3px solid;
    border-top: 3px solid;
}

.ec-button.ec-timeGridDay {
    margin-left: 0;
}

.ec-button.ec-next,
.ec-button.ec-create-resource {
    margin-right: 0;
}

.ec-time-grid .ec-body .ec-event {
    box-shadow: 0 0 0 1px #fff;
}

@media (min-width: 576px) {
    .ec.ec-month-view {
        height: 500px;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .ec.ec-month-view {
        height: 700px;
    }
}

@media (min-width: 1200px) {
    .ec.ec-month-view {
        height: 800px;
    }
}
