CSS Progress Bar Generator
Create animated CSS progress bars.
.progress-container {
width: 100%;
height: 20px;
background-color: #e5e7eb;
border-radius: 10px;
overflow: hidden;
}
.progress-bar {
height: 100%;
width: 65%;
background: #3b82f6;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 12px;
font-weight: 600;
}