

.mobile-court-slot {
	padding: 12px 8px;
	text-align: center;
	border: 2px solid var(--divider-color);
	border-radius: 8px;
	background: var(--white-color);
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 12px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
}

.mobile-court-slot.is-selected {
	background: var(--accent-color);
	color: var(--white-color);
	border-color: var(--accent-color);
}

.mobile-court-slot.is-booked {
	background: #f5f5f5;
	color: #999;
	border-color: #ddd;
	cursor: not-allowed;
}

.mobile-court-slot .mobile-slot-price {
	font-size: 14px;
	color: var(--accent-color);
	font-weight: 600;
    line-height: 1.5;
}

.mobile-slot-price .base-price {
    text-decoration: line-through;
    color: #999;
    font-size: 11.5px;
    font-weight: 400;
}

.mobile-court-slot .mobile-slot-price-time {
    line-height: 1.5;
    font-size: 12px;
}

.mobile-court-slot.is-selected .mobile-slot-price {
	color: var(--white-color);
}

.mobile-court-slot.is-booked .mobile-slot-price {
	color: #999;
}

.mobile-court-slot.is-past,
.mobile-court-slot.is-booked,
.mobile-court-slot.in-process {
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
    cursor: not-allowed;
}

.mobile-court-slot.is-past .mobile-slot-price {
    display: none;
}

.mobile-court-slot.is-booked .mobile-slot-price {
    color: #999;
    text-transform: uppercase;
}
