/* Basic Styles */
.hi-yoga-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.hi-yoga-table th, .hi-yoga-table td {
    border: 1px solid #e2e2e2;
    padding: 12px 15px;
    text-align: left;
}
.hi-yoga-table th {
    background: #f8f8f8;
    font-weight: 600;
}

.hi-yoga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.hi-batch-card {
    border: 1px solid #e2e2e2;
    padding: 20px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.hi-batch-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}
.hi-book-btn, .hi-submit-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
    display: inline-block;
    transition: background 0.3s;
}
.hi-book-btn:hover, .hi-submit-btn:hover {
    background: #333;
}

/* Modal Styles */
.hi-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}
.hi-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
}
.hi-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}
.hi-close:hover,
.hi-close:focus {
    color: #000;
    text-decoration: none;
}
.hi-modal-content p {
    margin-bottom: 15px;
}
.hi-modal-content input[type="text"],
.hi-modal-content input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#hi-booking-msg {
    margin-top: 15px;
    font-weight: 500;
}
.hi-success { color: #2ecc71; }
.hi-error { color: #e74c3c; }
