#document-container {
    display: flex;
    gap: 8px;
    margin: 1em 0;
}

#document-container img {
    flex: 1;
    height: 200px;
    aspect-ratio: 0.8;
    border-radius: 0.5em;
    object-fit: cover;
}

#document-container p {
    background: #ddd;
    border-radius: 0.5em;
    aspect-ratio: 0.8;
    box-sizing: border-box;
    height: 200px;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 1em;
    text-align: center;
}

button#sort {
    background: #0d8838;
    color: #FFF;
    border: none;
    border-radius: 0.5em;
    font-family: 'Bebas Neue';
    font-size: 20px;
    padding: 7px 20px 5px;
    cursor: pointer;
    margin: auto;
}

.delete-event {
    font-size: 16px;
    color: #A0A0A0;
    background: none;
    border: none;
    cursor: pointer;
}
.delete-event:hover {
    color: #FF0000;
}

.dt-nowrap {
    white-space: nowrap;
    min-width: 0 !important;
    width: 1px;
}