* {
    /*all: unset;*/
    font-family: "Helvetica";
    font-size: 14px;
    line-height: 18px;
}

body {
    margin: 0;
    padding: 0;
    border: black solid thin;
}

.homepage__container {
    margin: 5em;
}

.homepage__title_container {
    overflow: hidden;
}

.homepage__title {
    background-color: #d3d3d3;
    padding: 84px 42px;
    margin: 0 auto;
    width: 374px;
    /*width: 280px;*/
    /* total width = 200 + 2x82 = 364 */
}

.homepage__title_image {
    width: 100%;
}

.homepage__description {
    font-size: 18px;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.homepage__searchbar {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.homepage__loginbox {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.homepage__login {
    background-color: #1A73E8;
    color: white;
    margin: 14px 0;
    padding: 7px 14px;
    width: 70px;
    border-radius: 14px;
    cursor: pointer;
}

.homepage__user_welcome {
    margin: 14px 0;
    padding: 7px 0;
    font-size: 18px;
}

@media (max-width: 600px) {
    .homepage__title {
        width: unset;
    }

    .homepage__description {
        margin: 0;
    }
}

@media (min-width: 1000px) {
    .homepage__title_container {
        width: 860px;
        margin: 0 auto;
    }

    .homepage__title {
        float: left;
        width: 280px;
    }

    .homepage__description {
        margin: 0 0 0 400px;
    }
}

.content_form {
    position: absolute;
}

.content_form__textarea {
    background-color: white;
    /* padding: 0px;*/
    border-width: 0;
}

.content_form__date {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    padding: 0;
}

.content_form__button_row {
    display: flex;
    justify-content: flex-end;
}

.content_form__save_button,
.content_form__cancel_button,
.content_form__remove_button {
    margin: 5px;
    padding: 5px 10px;
    width: 80px;
    font-weight: 600;
    border: #1A73E8 3px solid;
}

.content_form__save_button,
.content_form__remove_button {
    background-color: #1A73E8;
    color: white;
}

.content_form__cancel_button {
    color: #1A73E8;
    background-color: white;
}

.overlay {
    z-index: 1;
    background-color: rgba(230, 230, 230, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.overlay__container {
    position: absolute
}

.timelinelist__container {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.timelinelist__title {
    text-align: center;
    font-size: 28px;
    line-height: normal;
    margin: 14px auto;
    width: 420px;
}

.timelinelist__add_timeline {
    float: right;
    text-align: center;
    background-color: #d3d3d3;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;

    box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2),
        0px 3px 4px 0px rgba(0, 0, 0, 0.14),
        0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}

.timelinelist__add_timeline:hover {
    background-color: #cce;
}

.timelinelist__add_timeline_span {
    display: inline;
    font-size: 28px;
    line-height: 31px;
}

.timelinelist__delete_button {
    position: absolute;
    top: 14px;
    right: -49px;
    background-color: #d3d3d3;
    text-align: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;

    box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2),
        0px 3px 4px 0px rgba(0, 0, 0, 0.14),
        0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}

.timelinelist__delete_button:hover {
    background-color: #cce;
}

.timelinelist__delete_span {
    display: inline;
    font-size: 28px;
    line-height: 31px;
}

.timelinelist__table {
    margin: 0 auto;
}


.timelinelist__row {
    position: relative;
}

.timelinelist__row_body {
    padding: 21px 14px;
    width: 420px;
}

.timelinelist__row_body:hover {
    background-color: #cce;
}

.timelinelist__date {
    float: right;
}

.timelinelist__timeline_title {
    font-size: 21px;
}

.timelinelist__timeline_description {}

.timelinelist__searchbar {
    margin: 0 auto;
}

.timeline_page__container {}


.timeline_page__top {
    width: 420px;
    margin: 0 auto;
}

.timeline_page__top:hover {
    background-color: #cce;
}

.timeline_page__title {
    clear: both;
    text-align: center;
    font-size: 28px;
    line-height: normal;
    padding: 7px 0;
}

.timeline_page__description {
    text-align: center;
    font-size: 14px;
    line-height: normal;
    padding: 7px 0;
}

.timeline_page__widget_container {
    margin: 14px auto;
    width: 420px;
}

.timeline_page_top__container {
    width: 420px;
    margin: 0 auto;
}

.timeline_page_top__title {
    clear: both;
    font-size: 28px;
    line-height: normal;
    padding: 7px 0;
    width: 420px;
}

.timeline_page_top__description {
    font-size: 14px;
    line-height: normal;
    padding: 7px 0;
    width: 420px;
}


.timeline_page_top__save,
.timeline_page_top__cancel {
    display: inline-block;
    margin: 7px 7px 7px 0;
    padding: 7px 14px;
    width: 80px;
    font-weight: 600;
    border: #1A73E8 3px solid;
}

.timeline_page_top__save {
    background-color: #1A73E8;
    color: white;
}

.content_form__cancel_button {
    color: #1A73E8;
    background-color: white;
}

.title_bar__container {
    overflow: auto;
    box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2),
        0px 3px 4px 0px rgba(0, 0, 0, 0.14),
        0px 1px 8px 0px rgba(0, 0, 0, 0.12);
    margin-bottom: 21px;
}

.title_bar__title {
    font-size: 21px;
    background-color: #d3d3d3;
    padding: 15px 21px 3px 21px;
    float: left;
}

.title_bar__search_bar {
    float: right;
    margin-right: 28px;
}

.title_bar__title_image {
    height: 42px;
}

.search_bar__container {
    background-color: #d3d3d3;
    margin: 14px 0;
    padding: 7px 14px;
    width: 140px;
    border-radius: 14px;
}

.search_bar__input {
    width: 140px;
    border: none;
    background-color: #d3d3d3;
    padding: 0;
}

.search_bar__input:focus-visible {
    outline-style: none;
}