* {
    font-family: 'Outfit', sans-serif;
}

.context-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    border-radius: 10px;
    width: max-content;
    overflow: hidden;
}
.context-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.context-menu ul li {
    padding: 10px;
    cursor: pointer;
    align-items: center;
    display: flex;
}

.context-menu .material-symbols-outlined{
    padding-right: 10px;
}

.context-menu ul li:hover {
    background-color: #eee;
}

button {
    padding: 10px;
    background: rgb(254, 22, 103);
    color: black;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: large;
    width: 100px;
}

button:hover {
    background: rgb(255, 80, 120);
}

select {
    font-size: large;
    padding: 5px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

textarea {
    padding: 5px;
    border-radius: 5px;
    font-size: medium;
}
