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

.button-enabled {
    margin-top: 3rem;
}

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: 11rem 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) {
    body {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    body {
        font-size: 11px;
    }
}
