/* Container Styling */
.angie-fsb-container-5452 {
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-family: inherit; /* Inherit theme font */
}

/* Message Styling */
.angie-fsb-message-5452 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.angie-fsb-message-5452 strong {
    color: #3A7A57; /* Primary Color from context */
    font-weight: 700;
}

.angie-fsb-message-5452.success strong {
    color: #3A7A57; /* Accent Green from context */
}

/* Progress Bar Track */
.angie-fsb-track-5452 {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

/* Progress Bar Fill */
.angie-fsb-bar-5452 {
    height: 100%;
    background-color: #3A7A57; /* Primary Color */
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem;
}

/* Success State for Bar */
.angie-fsb-container-5452:has(.success) .angie-fsb-bar-5452 {
    background-color: #3A7A57; /* Green for success */
}
