body {
    font-family: Poppins;
    padding: 2em;
    background-color: #f4f4f4;
}

.search {
    font-family: Poppins;
    font-size: 20px;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

button {
    font-family: Poppins;
}

.result {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: stretch;
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 0 5px #ccc;
}

.flex-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.flex-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.choice-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
}

.choice-container button {
    background: white;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 0 5px #ccc;
}

.header {
    font-size: 22px;
    font-weight: bold;
}

.smaller {
    font-size: 17px;
    font-style: italic;
    color: #666;
}

.large {
    font-size: 20px;
    margin-top: 5px;
}

.small {
    font-size: 18px;
    font-style: italic;
    color: #808080;
}

.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
    margin-left: auto;
    cursor: pointer;
    font-size: 2rem;
}

.cursor-pointer {
    cursor: pointer;
}

.edit-form input {
    width: 100%;
}

.edit-form{
    width: 90%;
}

.result .result {
    margin-top: 12px;
}