/* media/com_psychobook/css/psychobook.css */

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.slot-card {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    background-color: #f8f9fa;
    transition: box-shadow 0.3s;
}

.slot-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.slot-info {
    margin-bottom: 10px;
}

/* Modal */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow:auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 6px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-close {
    position: absolute;
    top:10px;
    right:15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}
