.fsc-container-2a20e1bc {
    display: flex;
    align-items: center;
    /* Default gradient matching the image, will be overridden by Elementor controls if used */
    background: linear-gradient(90deg, #ff8a00 0%, #e52e71 100%);
    padding: 10px 20px;
    border-radius: 8px;
    flex-wrap: nowrap; /* Force one line */
    gap: 10px;
    white-space: nowrap; /* Prevent text wrapping */
}

/* Allow Elementor background control to properly override the default */
.elementor-element .fsc-container-2a20e1bc.elementor-bg {
	background: transparent;
}

.fsc-title-2a20e1bc {
    font-weight: bold;
    font-style: italic;
    color: #fff;
    font-size: 18px;
}

.fsc-separator-2a20e1bc {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

.fsc-progress-wrapper-2a20e1bc {
    flex: 1; /* allow shrinking but take available space */
    display: flex;
    align-items: center;
    position: relative;
    min-width: 50px;
}

.fsc-progress-track-2a20e1bc {
    width: 100%;
    height: 8px; /* Default height */
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.fsc-progress-fill-2a20e1bc {
    height: 100%;
    background-color: #ffd700;
    transition: width 1s linear;
}

.fsc-icon-2a20e1bc {
    position: absolute;
    right: 0;
    transform: translateX(50%); /* Center over the end of the bar */
    color: #ffd700;
    font-size: 20px; /* Default size */
    background: radial-gradient(circle, #fff 40%, transparent 60%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.fsc-icon-2a20e1bc svg {
    width: 20px; /* Default size */
    height: 20px;
    fill: #ffd700;
}

.fsc-timer-text-2a20e1bc {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}