﻿.create-event-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.create-event-heading img {
    height: 45px;
}

.create-event-heading button {
    font-size: large;
    padding: 5px 10px;
    background-color: #CCFF00;
    border: 2px solid black;
    border-radius: 25px;
}

.create-event-heading div {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 25px;
}

#banner-image {
    width: 50%;
    margin: auto;
}

.date-time-input {
    width: 50%;
    border: solid #BDBDBD 1px;
    border-radius: 6px;
    margin-bottom: 20px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.small-search-input {
    height: auto;
    width: 40%;
    font-size: large;
    color: white;
    background-color: black;
    border: none;
    outline: none;
    margin-left: 10px;
    padding: 10px;
    padding-left: 20px;
    border-radius: 25px;
}

.small-search-input::placeholder {
    color: white;
}

.small-search-button {
    font-size: large;
    height: auto;
    color: black;
    cursor: pointer;
    border: 2px solid black;
    border-radius: 25px;
    font-weight: bold;
    background-color: #CCFF00;
    padding: 7px 50px;
}

.small-circle-container {
    display: flex;
    flex-direction: row;
    justify-content: left;
    column-gap: 20px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.small-circle-container div {
    background-color: black;
    width: 70px;
    height: 70px;
    border-radius: 40px;
}