@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600&display=swap');

.aspire-course-title {
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Geist', sans-serif;
}

.aspire-session-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.aspire-session-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    gap: 40px;
    background: #FAFAFA;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    justify-content: space-between;
}

.aspire-session-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 40px;
    flex-grow: 1;
}

.aspire-session-info-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aspire-icon-box {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.aspire-text-primary {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #191919;
    white-space: nowrap;
}

.aspire-text-secondary {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #626262;
    padding-left: 0;
    min-width: 140px;
}

.aspire-date-group {
    min-width: 245px;
}

.aspire-time-group {
    min-width: 108px;
    flex-shrink: 0;
}

.aspire-book-btn,
.aspire-book-btn.disabled {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    min-width: 140px;
    height: 48px;
    box-sizing: border-box;
    background: #0079A0;
    color: #FFFFFF;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-left: auto;
    flex-shrink: 0;
}

.aspire-book-btn:hover {
    background: #006080;
    color: #FFFFFF;
}

.aspire-book-btn.disabled {
    background: rgba(0, 121, 160, 0.12);
    color: rgba(0, 121, 160, 0.24);
    cursor: default;
    pointer-events: none;
}

@media (max-width: 480px) {
    .aspire-session-row {
        gap: 12px;
    }

    .aspire-session-details {
        gap: 10px;
    }
}