* {
    font-family: Roboto, "Helvetica Neue", sans-serif;
}

#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem;
}

#createReportText {
    width: 14rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    text-align: center;
    margin-bottom: 0;
}

#choosePlace {
    font-size: 20px;
    font-weight: normal;
    color: black;
    text-align: center;
    width: 15rem;
}

#location {
    font-size: 1rem;
    font-weight: normal;
    color: black;
    text-align: center;
    margin: 1rem 0 0 0;
}

#date {
    font-size: 1rem;
    font-weight: normal;
    color: black;
    text-align: center;
}

#day {
    font-size: 1rem;
    font-weight: normal;
    color: black;
    text-align: center;
}

.placeElement {
    cursor: pointer;
    user-select: none;
    background: #F7F4F7;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 15rem;
    padding: 0.5rem;
    border-radius: 3px;
    text-decoration: none;

    margin-top: 1rem;
    color: #5C2649;
}

.placeElement:first-child {
    margin-top: 0;
}

.placeElement:hover {
    background-color: #F6E0F4;
    color: #8A005A;
    transition: 200ms;
}

.placeElement p {
    margin: 0;
}

.elementTitle {
    font-size: 18px;
    font-weight: bold;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    text-align: center;
    padding-bottom: 0.5rem;
}

.elementText {
    font-size: 16px;
    font-weight: normal;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    text-align: center;
}

/*.elementText:first-child {*/
/*    padding-top: 0.3rem;*/
/*}*/

.warningText {
    font-size: 16px;
    font-weight: normal;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    text-align: center;
    color: #D30000;
}

.inactive {
    cursor: default;
}

.inactive:hover {
    background-color: #F7F4F7;
    color: #5C2649;
}

.copyElement {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.copyElement svg {
    padding-left: 0.2rem;
}

#loading {
    font-size: 20px;
    font-weight: bold;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    text-align: center;
}