.quick-links {
    display: flex;             /* row layout */
    flex-wrap: wrap;           /* wrap to next line if needed */
    justify-content: center;   /* center the row horizontally */
    gap: 15px;                 /* space between boxes */
    padding: 0;
    margin: 0;
}

.quick-link {
    display: flex;             /* icon + title in a row */
    align-items: center;
    gap: 10px;                 /* space between icon and text */
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
    flex-shrink: 0;            /* prevents boxes from shrinking too small */
    min-width: 180px;          /* optional: ensures reasonable size */
    max-width: 250px;          /* optional: keep box size consistent */
}

.quick-link:hover {
    background: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.quick-link .ql-icon {
    font-size: 32px;
    color: #0073aa;
    flex-shrink: 0;
}

.quick-link .ql-title {
    font-size: 16px;
    font-weight: 500;
}

/* Optional: add visible focus style for accessibility */
.quick-link:focus {
    outline: 3px solid #0073aa;
    outline-offset: 2px;
}


.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ql-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}