.jh-container {
    background-color: #D2F6C57C;
    padding: 20px;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jh-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.jh-date-section {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 250px;
}

.jh-icon svg {
    display: block;
}

.jh-date-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.jh-times-section {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.jh-time-slot {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #03A791;
    border-radius: 12px;
    color: #03A791;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    white-space: nowrap;
}

.jh-time-slot:hover {
    background-color: #03A791;
    color: #fff;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .jh-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        border-bottom: 1px solid rgba(3, 167, 145, 0.2);
        padding-bottom: 20px;
    }
    
    .jh-row:last-child {
        border-bottom: none;
    }

    .jh-date-section {
        min-width: auto;
    }

    .jh-times-section {
        width: 100%;
        justify-content: flex-start;
    }

    .jh-time-slot {
        flex: 1 1 calc(50% - 15px);
        text-align: center;
        padding: 10px 10px;
    }
}

@media (max-width: 480px) {
    .jh-time-slot {
        flex: 1 1 100%;
    }
}
