/* styles.css */
body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

.container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h2 {
    color: #007bff;
}

.list-group-item {
    background-color: #007bff;
    color: #ffffff;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
}

.list-group-item:hover {
    background-color: #0056b3;
}

footer {
    text-align: center;
    margin-top: 20px;
    color: #6c757d;
}
