/* public/assets/css/style.css */

/* --- Existing Styles --- */
.hall-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.hall-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.card-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}
.hall-option-card {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 1px solid #dee2e6;
}
.hall-option-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.25);
}
.hall-option-card.selected {
    border-color: #0d6efd;
    border-width: 2px;
    background-color: #f0f6ff;
}
.payment-option-card {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}
.payment-option-card:has(input:checked) {
    border-color: #198754;
    border-width: 2px;
    background-color: #f2fbf6;
}
.payment-option-card .form-check-input {
    float: left;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

/* --- New Style for Read More Link --- */
.read-more-link {
    font-size: 0.875em;
    text-decoration: none;
}
.read-more-link:hover {
    text-decoration: underline;
}