.videos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.video .delete-video {
    display: block;
    margin: 10px 0px;
    cursor: pointer;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    
}

.modal-close {
    float: right;
    font-size: 1.5em;
    cursor: pointer;
}

.content-header{
    display:flex;
    justify-content: space-between;
    width:100%;
}

.new-button{
    padding:8px 24px;
    background: var(--primary-blue);
    color:#fff;
    border-radius: 4px;
    border:none;
}


.event-buttons{
    display:flex;
    gap:20px;
    margin:20px 0px 0px 0px;
}
.edit-button{
    padding:8px 16px;
    background:orange;
    color:#fff;
    border-radius:4px;
    border:none;
}


.delete-button{
    padding:8px 16px;
    background: grey;
    color: #fff;
    border-radius:4px;
    border:none;
}

.edit-button i,.delete-button i{
    margin-right:4px;
}
.filter-field select{
    padding:8px 16px;
    border-radius:4px;
    display:block;
}

.events-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: start;
    border-radius:4px;
    border:1px solid #F5F5F5;
    padding:10px 20px;
}


.event-item .event-details {
    text-align: left;
}

.event-icon img {
    width: 60px;
}

.event-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-text);
}

.event-date {
    color: var(--body-text);
    text-transform: uppercase;
    font-size: 12px;
}

.event-description {
    font-size: 14px;
}


.form-field{
    margin:20px 0px;
    display:flex;
    flex-direction: column;
    gap:4px;
}

input[type=text], input[type=date]{
    background: #f8fbfd;
    border: 1px solid #eff3f6;
    border-radius: 3px;
    color: #646e77;
    height: 56px;
    font-size: 16px;
    box-shadow: none;
    padding: .5rem .75rem;
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    outline:none;
}



