.prasad-card {
    border: 1px solid #d9c5c5;
    border-radius: 8px;
    padding: 12px 15px;
    background: #fdf8f8;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.prasad-card.selected {
    border-color: #6c0000;
    background: #fff5f5;
    box-shadow: 0 2px 8px rgba(108,0,0,0.12);
}
.prasad-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.prasad-card-header .form-check-input {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
}
.prasad-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #3a3a3a;
    margin: 0;
    cursor: pointer;
}
.prasad-card-body {
    margin-top: 8px;
    padding-left: 30px;
}
.prasad-available {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #1a7a1a;
    margin-bottom: 8px;
}
.prasad-qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.qty-label {
    font-size: 13px;
    color: #555;
    margin: 0;
    white-space: nowrap;
}
.prasad-qty-row .form-control {
    width: 90px;
    padding: 4px 8px;
    font-size: 14px;
}
.prasad-qty-row .form-control:disabled {
    background: #f0f0f0;
    cursor: not-allowed;
}
.prasad-card.fully-booked {
    border-color: #e0c0c0;
    background: #fdf5f5;
    opacity: 0.75;
}
.prasad-fully-booked {
    display: inline-block;
    background: #fde8e8;
    color: #c0392b;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #f5b7b1;
    margin-top: 4px;
}
