/* Font controller styles */
.font-controller {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.font-controller-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.font-controller-buttons {
    display: flex;
    gap: 5px;
}

.font-button {
    background-color: #36C6D3;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

.reset-button {
    background-color: #e73d4a;
}

.font-size-display {
    margin: 0 5px;
    line-height: 28px;
}

/* Print styles - hide controller when printing */
@media print {
    .font-controller {
        display: none !important;
    }
}