/**
 * Discord Events Styles
 * Minimal styling to work with existing theme
 */

/* Individual event */
.discord-event {
    padding: 15px 0;
}

.discord-event:not(:last-child) {
    border-bottom: 1px solid #eee;
}

/* Event header */
.discord-event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.discord-event-title {
    margin: 0;
}

.discord-event-status {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Status colors */
.discord-event-upcoming .discord-event-status {
    background: #e3f2fd;
    color: #1976d2;
}

.discord-event-soon .discord-event-status {
    background: #fff3e0;
    color: #f57c00;
}

.discord-event-active .discord-event-status {
    background: #e8f5e8;
    color: #2e7d32;
}

.discord-event-past .discord-event-status {
    background: #f5f5f5;
    color: #757575;
}

/* Event details */
.discord-event-details {
    font-size: 14px;
}

.discord-event-description {
    margin-top: 10px;
    padding-top: 10px;
}

.discord-event-description p {
    margin: 0;
    line-height: 1.5;
    font-size: 13px;
}

/* Simple events list */
.discord-events-simple {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.discord-event-simple {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.discord-event-simple:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Empty state */
.discord-events-empty {
    padding: 20px;
    color: #666;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .discord-event-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .discord-event-status {
        margin-top: 5px;
    }

    .discord-event {
        padding: 12px;
    }
}