/* Card layout */
.vee-events { display: grid; gap: 16px; }

.vee-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: #111;
    color: #fff;
}

.vee-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1; /* take available space */
}

.vee-right img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

/* Popup */
.vee-modal { display:none; position:fixed; inset:0; z-index:9999; }
.vee-modal.active { display:block; }
.vee-overlay { position:absolute; inset:0; background:rgba(0,0,0,.7); }

.vee-modal-content {
    position: relative;
    max-width: 600px;
    margin: 10vh auto;
    background: #000; /* editable background */
    padding: 24px;
    border-radius: 16px;
    animation: fade .3s;
    color: #fff; /* text color */
}

.vee-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 24px;
    color: white; /* white close button */
    background: transparent;
    border: none;
    cursor: pointer;
}

.vee-popup-thumb { width:100%; max-height:120px; overflow:hidden; margin-bottom:12px; border-radius:8px; }
.vee-popup-thumb img { width:100%; height:100%; object-fit:cover; }

@keyframes fade { from{opacity:0} to{opacity:1} }

/* Mobile responsive */
@media (max-width:768px){
    .vee-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .vee-right img {
        width: 100%;
        height: 120px;
        margin-top: 8px;
    }

    .vee-events.cards {
        display:flex; overflow-x:auto; scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling: touch; gap:16px; padding-bottom:8px;
    }

    .vee-events.cards .vee-card {
        flex:0 0 auto; width:200px; scroll-snap-align:start;
    }

    .vee-card .vee-title { font-size:16px; margin-bottom:4px; }
    .vee-card .vee-date { font-size:14px; color:#ccc; }

    .vee-modal-content { width:90%; margin:5vh auto; padding:16px; }
    .vee-popup-thumb { max-height:80px; margin-bottom:8px; }
    .vee-img { max-height:200px; margin-bottom:12px; width:100%; object-fit:cover; }
    .vee-modal-title { font-size:18px; }
    .vee-modal-date { font-size:14px; }
}
