/* ---------- DAYS ---------- */
.days {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.day {
    padding: 16px;
    text-align: center;
    cursor: pointer;
    border-right: 1px solid #eee;
}

.day .top {
    font-family: "Antonio", sans-serif;
    font-weight: bold;
    font-size: 22px;
}

.day:last-child {
    border-right: none;
}

.day .bottom {
    display: block;
    font-weight: bold;
    margin-top: 4px;
}

.day.active {
    background: #45ff6d;
}

/* ---------- CONTENT ---------- */

.fade {
    animation: fade-in 0.4s ease;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.card-header {
    padding: 16px;
    font-size: 26px;
    font-weight: 700;
    border-bottom: 2px solid #46947f;
    font-family: "Antonio", sans-serif;
    font-weight: bold;
}

.event {
    padding: 16px;
    border-bottom: 2px solid #46947f;
    justify-content: space-between;
}

.event.done {
    color: #a2a2a2;
}

.event:last-child {
    border-bottom: none;
}

.time {
    font-size: 14px;
    color: #777;
}

.title {
    font-weight: 700;
    font-size: 18px;
}

.green {
    color: #39d353;
}

.arrow {
    color: #39d353;
    font-size: 22px;
}

.event-details {
    margin: 10px;
    padding: 10px;
    background-color: #eee;
    border-radius: 5px;
}

.event-details .image {
    float: right;
    margin-left: 16px;
    max-width: 40%;
    width: 150px;
    height: auto;
}

.program-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.program-content.non-grouped {
    grid-template-columns: 1fr;
}

/* ---------- MOBILE ---------- */
@media screen and (max-width: 767px) {
    .program-content {
        grid-template-columns: 1fr;
    }
}

/* ---------- MODERN SWITCH ---------- */
.controls {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-right: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #4ecdc4;
}

input:checked+.slider:before {
    transform: translateX(20px);
}

.switch-label {
    font-size: 14px;
    font-weight: 500;
}

.type-tag {
    padding: 2px 3px;
    border-radius: 4px;
    margin-left: 5px;
    color: black;
}

.event .is-now {
    color: #0cbc32;
    font-size:large;
    font-weight: bold;
    margin-left: 20px;
}

.content-not-ready {
    margin-top:20px;
    background: #ffffff;
    border-radius: 4px;
    padding: 8px;
    text-align: center;
    padding: 36px 20px;
    font-weight: 600;
}