.button-enabled button {
    background-color: #24A0ED;
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 5px;
    cursor: pointer;
}

button {
    padding: 0.625rem 1.25rem;
    font-size: 1em;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #0056b3;
}

button:active {
    transform: scale(0.98);
}

#progress-bar-container {
    width: 100%;
    height: 1.875rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #e0e0e0;
    margin: 0 auto 1.25rem;
    overflow: hidden;
}

#progress-bar {
    width: 0;
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.1s linear;
}

#status {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

button:disabled {
    background-color: #a0a0a0;
    cursor: not-allowed;
}

@media (max-width: 1440px) {
    button {
        padding: 0.5625rem 1.125rem;
        font-size: 0.95em;
    }
    #progress-bar-container {
        height: 1.75rem;
        margin: 0 auto 1.125rem;
    }
    #status {
        margin-bottom: 1.125rem;
        font-size: 1.0625rem;
    }
}

@media (max-width: 1024px) {
    button {
        padding: 0.5rem 1rem;
        font-size: 0.9em;
    }
    #progress-bar-container {
        height: 1.625rem;
        margin: 0 auto 1rem;
    }
    #status {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    button {
        padding: 0.4375rem 0.875rem;
        font-size: 0.85em;
    }
    #progress-bar-container {
        height: 1.5rem;
        margin: 0 auto 0.875rem;
    }
    #status {
        margin-bottom: 0.875rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    button {
        padding: 0.375rem 0.75rem;
        font-size: 0.8em;
    }
    #progress-bar-container {
        height: 1.375rem;
        margin: 0 auto 0.75rem;
    }
    #status {
        margin-bottom: 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 375px) {
    button {
        padding: 0.3125rem 0.625rem;
        font-size: 0.75em;
    }
    #progress-bar-container {
        height: 1.25rem;
        margin: 0 auto 0.625rem;
    }
    #status {
        margin-bottom: 0.625rem;
        font-size: 0.8125rem;
    }
}
