@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");

.training-button {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: white;
    color: rgb(248, 0, 97);
    padding: 5px 5px 3px 5px;
    font-size: 25px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgb(248, 0, 97);
    z-index: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fafafa;
    margin: 10vh auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.modal-content textarea {
    width: calc(100% - 16px);
    height: 30vh;
    border-radius: 8px;
    border: 1px solid rgb(238, 238, 238);
    padding: 10px;
}

.modal-content p {
    font-size: 0.8rem;
    padding: 0px 10px;
}

.modal-content .actions {
    text-align: right;
}

.modal-content .actions button {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    min-width: 64px;
    padding: 5px 15px;
    border-radius: 8px;
    transition:
        background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border: 1px solid rgba(248, 0, 97, 0.5);
    color: rgb(248, 0, 97);
    box-shadow: none;
    text-transform: none;
    background-color: white;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
