.font-overlay-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}
.font-container {
    width: 80%;
    height: 80%;
    padding-left: 20px;
    position: fixed;
    top: 10%;
    left: 10%;
    z-index: 9999;
    background-color: white;
    border: 3px solid #000;
    padding-top: 20px;
    font-family: Arial, sans-serif;
}

.font-close-button {
    position: absolute;
    top: 3px;
    right: 5px;
    font-size: 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.font-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.font-description {
    font-size: 20px;
    margin-bottom: 20px;
}

.font-size-selector {
    margin-bottom: 20px;
}

.font-size-label {
    font-size: 20px;
    margin-right: 20px;
}

.font-save-button {
    font-size: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.font-save-button:hover {
    background-color: #0056b3;
}