.miw-airsoft-events {
    max-width: 800px;
    margin: 20px 0;
}

.miw-airsoft-events h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.3s;
}

.event-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-date h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.event-actions .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-actions .btn-registered {
    background: #dc3545;
    color: #fff;
}

.event-actions .btn-registered:hover {
    background: #c82333;
}

.event-actions .btn-not-registered {
    background: #28a745;
    color: #fff;
}

.event-actions .btn-not-registered:hover {
    background: #218838;
}

.event-actions .btn.loading {
    opacity: 0.6;
    cursor: not-allowed;
}

.event-actions .btn .icon {
    font-weight: bold;
}

