
#letter-drawer {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: center;
    align-items: center;
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: blur(1px);
    padding-top: 5px;
    padding-bottom: 5px;
    bottom: 0;
    left: 0;
    z-index: 10;
    pointer-events: auto;
    min-height: 60px;
    color: #fff;
    gap: 5px;
}
.drawer-empty-message {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.drawer-empty-message .material-symbols-outlined {
    font-size: 24px;
    margin-right: 8px;
}
#request-letters-button {
    display: flex;
    border-radius: 25px;
    font-size: 30px;
    height: 50px;
    background: none;
    padding: 5px 20px;
    color: rgba(44, 44, 44, 0.8);
    border: 3px solid rgba(44, 44, 44, 0.8);
    background: rgba(204, 204, 204, 0.9);
    position: relative;
}
#request-letters-button:hover {
    background: rgba(214, 214, 214, 1.0);
}
#request-letters-button>.material-symbols-outlined:not(.penalty-icon) {
    font-size: 30px;
    display: inline-block;
    align-content: center;
}
#request-letters-button>.penalty-icon {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
}


#toolkit {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    pointer-events: auto;
}