.hrbm-mandir-booking-calendar {
    font-family: 'Raleway', sans-serif;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff7f0;
    border-radius: 10px;
    overflow: hidden;
}

.hrbm-calendar-header {
    background-color: #800000;
    color: white;
    padding: 15px;
    text-align: center;
}

#hrbm-booking-title {
    margin: 0;
    font-size: 20px;
}

#hrbm-booking-subtitle {
    margin: 8px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.hrbm-main-container {
    display: flex;
    padding: 15px;
}

.hrbm-ritual-selection {
    width: 180px;
    margin-right: 15px;
}

#hrbm-ritual-title {
    color: #800000;
    margin-bottom: 12px;
    font-size: 16px;
}

.hrbm-ritual-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hrbm-ritual-option {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.hrbm-ritual-option:hover {
    background-color: #ff9c0010;
    border-color: #ff9c00;
}

.hrbm-ritual-option.hrbm-selected {
    border-color: #800000;
    background-color: #80000010;
}

.hrbm-ritual-icon {
    font-size: 18px;
    margin-bottom: 5px;
}

.hrbm-ritual-name {
    font-size: 13px;
    font-weight: bold;
    color: #800000;
}

.hrbm-calendar-section {
    flex: 1;
}

.hrbm-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.hrbm-nav-btn {
    background-color: #ff9c00;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.hrbm-nav-btn:hover {
    background-color: #e68a00;
}

.hrbm-month-year {
    color: #800000;
    margin: 0;
    font-size: 16px;
}

.hrbm-calendar-grid {
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hrbm-day-names {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #800000;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: bold;
}

.hrbm-date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #eee;
}

.hrbm-date-cell {
    background-color: white;
    min-height: 35px;
    padding: 0px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}

.hrbm-date-cell:hover {
    background-color: #ff9c0010;
}

.hrbm-date-cell .hrbm-date {
    font-size: 12px;
    font-weight: bold;
    color: #333;
}

.hrbm-date-cell.hrbm-other-month .hrbm-date {
    color: #ccc;
}

.hrbm-date-cell.hrbm-today {
    background-color: #ff9c0010;
}

.hrbm-date-cell.hrbm-today .hrbm-date {
    color: #800000;
}

.hrbm-date-cell.hrbm-selected {
    background-color: #ff9c00;
}

.hrbm-date-cell.hrbm-selected .hrbm-date {
    color: white;
}

.hrbm-time-slots-container {
    margin-top: 15px;
}

#hrbm-timeslots-title {
    color: #800000;
    margin-bottom: 8px;
    font-size: 15px;
}

.hrbm-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hrbm-time-slot {
    background-color: white;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.hrbm-time-slot:hover {
    background-color: #ff9c0010;
}

.hrbm-time-slot.hrbm-available {
    border-color: #800000;
    color: #800000;
}

.hrbm-time-slot.hrbm-booked {
    background-color: #eee;
    color: #999;
    cursor: not-allowed;
}

.hrbm-time-slot.hrbm-selected {
    background-color: #800000;
    color: white;
    border-color: #800000;
}

.hrbm-booking-details {
    margin-top: 15px;
    padding: 12px;
    background-color: white;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hrbm-selected-info {
    color: #800000;
    font-size: 13px;
}

.hrbm-book-now-btn {
    background-color: #800000;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.hrbm-book-now-btn:hover {
    background-color: #6a0000;
}

.hrbm-book-now-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .hrbm-main-container {
        flex-direction: column;
    }

    .hrbm-ritual-selection {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .hrbm-ritual-options {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hrbm-ritual-option {
        flex: 1;
        min-width: 100px;
    }

    .hrbm-date-cell {
        min-height: 30px;
    }

    .hrbm-booking-details {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* Form Alert */
.hrbm-booking-form {
    text-align: left;
    margin-top: 15px;
}

.hrbm-form-group {
    margin-bottom: 15px;
}

.hrbm-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.swal2-input {
    width: 100% !important;
    margin: 5px 0 !important;
}

.hrbm-booking-summary {
    margin-top: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #800000;
}

.hrbm-booking-summary p {
    margin: 5px 0;
    font-size: 14px;
}

.hrbm-booking-details {
    margin-top: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.hrbm-booking-details p {
    margin: 5px 0;
    font-size: 14px;
}
/* Poojas Style*/
/* Base Styles */
.poojas-container {
        font-family: 'Raleway', sans-serif;

    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 20px;
    background-color: #fff9f5;
}

.poojas-header-section {
    text-align: center;
    margin-bottom: 40px;
}

.poojas-main-title {
    color: #8b0000;
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.poojas-title-icon {
    font-size: 2.2rem;
}

.poojas-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0;
}

/* Category Styles */
.poojas-category-section {
    margin-bottom: 40px;
}

.poojas-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0e6e6;
}

.poojas-category-title {
    color: #8b0000;
    font-size: 1.8rem;
    margin: 0;
}

.poojas-category-icon {
    color: #d4a017;
    font-size: 1.8rem;
}

/* Pooja Grid Styles */
.poojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.poojas-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-left: 4px solid #d4a017;
}

.poojas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.poojas-info {
    flex: 1;
}

.poojas-service-name {
    color: #333;
    font-size: 1rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.poojas-price {
    color: #d4a017;
    font-weight: bold;
    font-size: 1rem;
    margin: 0;
}

.poojas-whatsapp-btn {
    background-color: #25D366;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.poojas-card:hover .poojas-whatsapp-btn {
    background-color: #128C7E;
}

.poojas-whatsapp-icon {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .poojas-main-title {
        font-size: 2rem;
    }

    .poojas-category-title {
        font-size: 1.5rem;
    }

    .poojas-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .poojas-main-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 5px;
    }

    .poojas-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .poojas-grid {
        grid-template-columns: 1fr;
    }
}
.hrbm-time-slot.hrbm-selected {
    background-color: #ff6900 !important; /* Bootstrap danger red */
    color: white;
    border: 1px solid #ff6900;
}
