﻿.schedule-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 40%;
    margin-bottom: 5px;
}

.guest-list-container {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

.guest-list-container div {
    background-color: black;
    width: 50px;
    height: 50px;
    border-radius: 15px;
}

.long-black-div {
    background-color: black;
    width: 50%;
    height: 100px;
    border-radius: 20px;
}

.upload-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: solid black 2px;
    border-radius: 15px;
    width: 50%;
    padding: 20px 25px;
    margin-bottom: 15px;
}

.upload-container > div:nth-of-type(1) {
    display: flex;
    flex-direction: column;
}

.upload-container img {
    height: 30px;
}