body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #121212;
    color: #fff;
}
.container {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    text-align: center;
    width: 400px;
}
input, button {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}
input {
    background-color: #2b2b2b;
    color: #fff;
}
button {
    background-color: #FFD700; /* Golden */
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #FFC107; /* Bright Yellow */
}
#result {
    margin-top: 20px;
    font-weight: bold;
}
#rating-info, #user-info {
    margin-top: 10px;
    font-weight: bold;
}
#progress-container {
    margin-top: 20px;
    background-color: #444;
    border-radius: 5px;
    height: 30px;
    position: relative;
    overflow: hidden;
}
#progress-bar {
    background-color: #00adb5; /* Teal */
    height: 100%;
    width: 0;
    transition: width 0.3s;
}
#progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 30px; /* Align text vertically */
    color: #fff;
    font-weight: bold;
}
