.svg-container {
    width: 100%;
    height: auto;
}
svg {
    width: 100%;
    height: auto;
}
.ec-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.frosted-glass {
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.7);
}
.ec-loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ff6725;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.ec-loader-text {
    text-align: center;
    max-width: 500px;
    padding: 20px;
}
.ec-loader-progress {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 5px;
    margin: 15px 0;
    height: 10px;
}
.ec-loader-progress-bar {
    height: 10px;
    border-radius: 5px;
    background-color: #ff6725;
    width: 0%;
    transition: width 0.5s;
}
