/**
 * FMC Tracing Buttons — frontend styles
 * Customize colors/sizing to match your theme.
 */

.fmc-tracing-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
    align-items: center;
}

.fmc-tracing-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.fmc-tracing-btn:hover,
.fmc-tracing-btn:focus {
    opacity: 0.8;
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.fmc-tracing-btn__img {
    display: block;
    /* Adjust width to match your button image dimensions */
    width: auto;
    max-width: 160px;
    height: auto;
}

.fmc-tracing-btn__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
