.quick-links {
    display: flex;
    flex-direction: column;    /* stack links vertically */
    align-items: flex-start;   /* left align */
    gap: 10px;
    padding: 0;
    margin: 0;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
    width: 100%;
    max-width: 350px;          /* adjust to taste */
    box-sizing: border-box;
}

.quick-link:hover {
    background: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.quick-link:focus {
    outline: 3px solid #0073aa;
    outline-offset: 2px;
}

/* Icon and image wrapper — same fixed size for both */
.quick-link .ql-icon,
.quick-link .ql-image-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;               /* change this one value to resize all icons/images */
    height: 40px;
    flex-shrink: 0;
    color: #0073aa;
}

/* SVG icons fill the wrapper */
.ql-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Uploaded images fill the wrapper */
.ql-image-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.quick-link .ql-title {
    font-size: 16px;
    font-weight: 500;
}

.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;
}