.fpb-container {
    width: 100%;
    max-width: 600px;
    margin: 10px auto;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.fpb-message {
    padding: 10px 20px;
    font-weight: bold;
    font-size: 13px;
    background-color: #903C53; /* Rojo */
    color: white;
    border-radius: 8px;
    margin-bottom: 0px;
    margin-top: 5px;
    transition: all 0.3s ease;
        line-height: normal;
}

.fpb-container.fpb-success .fpb-message {
  background-color: #4CAF50;
  color: white;
  animation: fpb-pulse 1s ease-in-out 3; /* Solo 3 veces */
}

@keyframes fpb-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.fpb-bar-wrapper {
    /*padding: 0 20px;*/
}

.fpb-bar {
    background-color: #eee;
    border-radius: 999px;
    overflow: hidden;
    height: 20px;
    position: relative;
}

.fpb-fill {
    height: 100%;
    background-color: #903C53; /* Rojo */
    border-radius: 999px;
    transition: width 0.6s ease;
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 75%,
        transparent
    );
    background-size: 40px 40px;
    animation: fpb-stripes 1s linear infinite;
}

.fpb-container.fpb-success .fpb-fill {
    background-color: #4CAF50; /* Verde al llenar */
}

@keyframes fpb-stripes {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 0;
    }
}


.fpb-icon {
    font-size: 16px;
    color: #b71c1c;
    margin-right: 8px;
    display:none;
}
