/****************************/
/* Single Course Page */
/****************************/

.course-dates-box {
    border: 2px solid #4db6c9;
    border-radius: 20px;
    padding: 25px;
    background: #0B2A2E;
    display: flex;
    flex-direction: column;
}

.date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #071115;
}

.date-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.date-row:first-child {
    padding-top: 0;
}

.date-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.date-title {
    font-size: 1.15rem;
    color: #FCFCFC;
    font-weight: 700;
}

.date-meta {
    font-size: 0.8rem;
    display: flex;
    gap: 8px;
    align-items: center;
}

.date-seats {
    color: #6bb9bf;
}

.date-seats-scarce {
    color: #fcd303;
}

.date-seats-soldout {
    color: #f28b82;
}

.date-divider {
    color: #FCFCFC;
}

.date-price {
    color: #f7941d;
}

.date-right {
    display: flex;
}

.date-btn {
    background: #f7941d;
    color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
}

.date-btn:hover {
    background: #ea6c0a;
    color: #fff;
}

.date-btn-soldout {
    background: #ed282b;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: not-allowed;
}