/* style.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}
.container {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    width: 100%;
}
h1 {
    color: #007bff;
    font-size: 2.8em;
    margin-bottom: 5px;
}
h2 {
    font-size: 1.6em;
    color: #6c757d;
    margin-top: 0;
    font-weight: 400;
}
p {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1em;
}
.icon {
    font-size: 4.5em;
    margin-bottom: 20px;
    display: block;
    color: #007bff;
}
.progress-container {
    width: 80%;
    margin: 30px auto;
    background-color: #e9ecef;
    border-radius: 5px;
    height: 25px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
.progress-bar {
    height: 100%;
    width: 0; 
    background-color: #28a745;
    text-align: right;
    line-height: 25px;
    color: white;
    font-weight: bold;
    padding-right: 8px;
    box-sizing: border-box;
    transition: width 2s ease-out; 
}
.highlight {
    font-weight: bold;
    color: #343a40;
    font-size: 1.4em;
    display: block;
    margin: 30px 0;
    padding: 15px;
    border: 2px solid #007bff;
    border-radius: 8px;
    background-color: #e0f0ff;
}