.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
}

.container {
    display: flex;
    flex-direction: row;
    padding: 15px 0;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.events {
    width: 100%;
}

.events ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
} 

.events li {
    width: 100%;
    height: 60px;    
    background: #333;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    transition: var(--hoverFade);
}

.events li:hover {  
    background: #222;
}

.events .link {
    color: var(--secundary);
    padding: 20px 30px;
    transition: var(--hoverFade);
}

.events .link:hover {
    color: var(--secundaryHover);
}

.events .link:nth-child(1) {
    font-weight: 700;
    text-transform: uppercase;
}

.events .delete {
    background: var(--warning)!important;
    padding: 7px 20px;
    margin-right: 30px;
    color: var(--secundary);
    display: none;
    font-size: 14px
}

.events li:hover .delete {
    display: block;
}

.events .delete:hover {
    background: var(--warningHover);
}

#searchInput {
    margin: 0 60px;
}