body {
    font-family: 'Georgia', serif;
    background-color: #ffffff;
    color: #4a4a4a;
}

nav a {
    transition: color 0.2s ease-in-out;
}

nav a:hover {
    text-decoration: underline;
}

input[type="text"] {
    border-radius: 9999px;
}

p {
    line-height: 1.75rem; /* 28px */
    border-radius: 8px;
    padding: 16px;
}

/* Basic CSS for the slider */
.recommendation {
    display: none;
}

.recommendation.active {
    display: block;
}

/* Dots Indicator */
.dot {
    width: 8px;
    height: 8px;
    background-color: #d1d5db; /* Tailwind's gray-300 */
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.dot.active {
    width: 20px;
    height: 8px;
    background-color: #4a4a4a; /* Tailwind's gray-700 */
}
