/*.spacing-light {
    letter-spacing: 2px;
    line-height: 1.6;
}
.spacing-moderate {
    letter-spacing: 3px;
    line-height: 2;
}
.spacing-heavy {
    letter-spacing: 4px;
    line-height: 2.5;
}
.spacing-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 140px;
    height: 100px;
    border: 2px solid #000;
    border-radius: 10px;
    background: white;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.spacing-icon {
    font-size: 18px;
    margin-bottom: 5px;
}

.spacing-text {
    font-size: 16px;
}

.spacing-indicator {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
}

.spacing-indicator .step {
    width: 25px;
    height: 4px;
    background-color: transparent;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.spacing-button[data-level="1"] .step:nth-child(1) {
    background-color: #0066FF;
}
.spacing-button[data-level="2"] .step:nth-child(1),
.spacing-button[data-level="2"] .step:nth-child(2) {
    background-color: #0066FF;
}
.spacing-button[data-level="3"] .step {
    background-color: #0066FF;
}

.check-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 14px;
    color: #0066FF;
    display: none;
}

.spacing-button.active {
    border-color: #0066FF;
    color: #0066FF;
}

.spacing-button:not([data-level="0"]) .check-icon {
    display: block;
}








.btn-accessibility {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin: 20px;
    transition: background 0.3s;
}

.btn-accessibility:hover {
    background-color: #0056b3;
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 420px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.menu-container.open {
    right: 0;
}

.menu-header {
    background: #0073e6;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.menu-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
    max-height: calc(100vh - 60px);
}

.menu-content::-webkit-scrollbar {
    width: 8px;
}

.menu-content::-webkit-scrollbar-thumb {
    background-color: #0073e6;
    border-radius: 10px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
    justify-items: center;
}

.menu-item {
    background: #f0f0f0;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    border: 2px solid #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
    min-width: 110px;
}

.menu-item:hover {
    background: #e0e0e0;
    border-color: #0073e6;
    color: #0073e6;
}


.highlight-links a {
    background: yellow;
    color: black !important;
    font-weight: bold;
}/*

