input {
    margin-left: 10px;
}

#darkmode {
    background-color: #65666f;
}

#timer {
    margin-bottom: auto;
    font-size: xxx-large;
    color: #d3d3d3;
}

#modify-btn,#share-btn {
    padding-top: 0;
    padding-bottom: 0;
    color: inherit
}

.menu-btn {
    margin-right: 5px;
}

.list-item {
    background-color: transparent;
    border: transparent;
}

.checkmark {
    color: white;
    font-weight: bold;
}

#link {
    text-align: center;
}

.event {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
}

.textarea {
    border: 2px solid #555555;
    border-radius: 5px;
    padding: 10px;
    overflow: hidden;
    resize: none;
    display: block;
    font-size: inherit;
    line-height: 20px;
}

/*
NAVBAR
*/
#new-event {
    justify-content: space-between;
    margin-left: 100px;
    margin-right: 100px;
    padding: 0px 15px 0px 15px;

    border-width: 5px;
    border-color: black;
    border-style: solid;
    border-radius: 30px;
}

.navbar {
    background-color: #5f5f66;
}

.nav-link:hover {
    color: white;
}

.nav-item {
    padding: 0px 30px 0px 30px;
}

/*
OVERWRITE BOOTSTRAP
*/
.dropdown-menu {
    --bs-dropdown-padding-y: 5px !important;
}

.d-flex {
    padding: 5px;
}

#create-error, #modify-error {
    color: red;
    font-style: italic;
    visibility: hidden;
    font-size: revert !important;
}

/*
RESPONNSIVE PAGE
*/
@media (min-width: 992px) {
    .static {
        display: flex;
        justify-content: center;
        font-size: 80%;
    }

    h3,span,.nav-link {
        font-size: 120%;
    }

    #title {
        font-size: 90%;
    }
}

@media (max-width: 992px) {
    #title {
        font-size: 70%;
    }

    .static {
        font-size: 65%;
    }

    .time {
        font-size: 80%;
    }

    #existing-events .dropdown-item {
        display: flex;
        flex-direction: column;
    }

    #existing-events .event-btns {
        margin-top: 0.25rem;
        width: 95%;
        display: flex;
        justify-content: flex-start;
        padding-left: 5%;
    }

    .event {
        margin-left: revert;
    }
}