/* 🌟 General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
    color: #333;
    text-align: center;
    padding: 20px;
}

/* 🌟 Container */
.container {
    max-width: 700px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: auto;
}

/* 🌟 Heading */
h2 {
    color: #007bff;
    margin-bottom: 15px;
}

/* 🌟 Textarea */
textarea {
    width: 100%;
    height: 150px;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    resize: none;
    outline: none;
    transition: 0.3s;
}

textarea:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.5);
}

/* 🌟 Button */
button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
    transition: 0.3s;
}

button:hover {
    background: #0056b3;
}

/* 🌟 ATS Score Display */
p {
    font-size: 20px;
    margin-top: 15px;
    font-weight: bold;
}

/* 🌟 Missing Keywords */
h4 {
    color: #dc3545;
    margin-top: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #ffc107;
    padding: 8px;
    margin: 5px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}
