/* Reset some default styles */

body,
h1,
h2,
h3,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: 'Helvetica', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
}

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

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 22px;
    margin-bottom: 10px;
    color: #444;
}

.input-field {
    padding: 14px;
    margin-bottom: 20px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    background-color: #f5f5f5;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button {
    padding: 16px 32px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

#audit-result {
    margin-top: 20px;
    font-size: 24px;
    color: #333;
}


/* Recommendations section */

#recommendations-list {
    margin-top: 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

ul {
    padding-left: 20px;
}

li {
    font-size: 18px;
    margin-bottom: 5px;
    color: #444;
}


/* Footer */

footer {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    color: #777;
}


/* Media Queries for Responsive Design */

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    h1 {
        font-size: 32px;
    }
    label {
        font-size: 20px;
    }
    .input-field {
        font-size: 16px;
    }
    button {
        font-size: 18px;
    }
}