.events {
    width: 70%;
    max-width: 800px;
    margin: 0 auto;
    /* background-color: #1e1e1e; */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.events h1 {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item {
    display: flex;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #444444;
    border-radius: 10px;
}


.event-item .event-icon {
    align-content: center;
    background-color: #252525;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    margin-right: 10px;
    min-width: 100px;
    width: 100px;
}

.event-item .date .month {
    font-size: 12px;
}

.event-item .date .day {
    font-size: 12px;
    padding-left: 4px;
    padding-right: 6px;
}

.event-item .details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-item .details .type {
    color: #ff0000;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.event-item .details .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.event-item .details .link {
    transition: 0.5s;
}

.event-item:hover .details .link {
    letter-spacing: 1.5px;
}

.event-item .details .time {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #ffffff;
    background-color: #252525;
    width: min-content;
    border-radius: 20px;
    padding-right: 8px;
}

.event-item .details .time img {
    margin-right: 5px;
}

.event-item .details .date-time {
    display: flex;
    align-items: stretch;
    gap: 3px;
    margin-right: 5px;
}

.past-event-list {
    opacity: 0.5;
}

.status {
    font-size: 12px;
}


.event-item .details .date img {
    margin-right: 5px;
}

.event-item .details .date {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    font-size: 12px;
    color: #ffffff;
    background-color: #252525;
    width: min-content;
    border-radius: 6px;
    padding: 1px 2px;
}
