.beszamolok-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.beszamolok-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #c9a86a;
}

.beszamolok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.beszamolok-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #eee;
}

.beszamolok-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.beszamolok-ev {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.beszamolok-status {
    color: #2a7ae2;
    font-size: 14px;
}

.beszamolok-empty {
    color: #999;
    font-size: 13px;
}

/* MODAL */
.beszamolok-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.beszamolok-modal-content {
    width: 90%;
    height: 90%;
    background: #000;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.beszamolok-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.beszamolok-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
