/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

h1, h2 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="file"] {
    margin: 20px 0;
}

button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #005177;
}

.hidden {
    display: none;
}

.progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    margin: 20px 0;
}

.progress {
    height: 20px;
    width: 0%;
    background-color: #4caf50;
    transition: width 0.4s ease;
}

#currentFile {
    text-align: center;
    color: #555;
}

#results {
    margin-top: 20px;
}

.issue {
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.critical {
    background-color: #f8d7da;
    color: #721c24;
}

.minor {
    background-color: #fff3cd;
    color: #856404;
}
