* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f6fa;
    color: #3c4259;
}

.header {
    text-align: center;
    padding: 2rem;
    background-color: #eef1f8;
    border-bottom: 1px solid #dfe4ea;
}

.header h1 {
    margin-top: 0;
    font-size: 2.5rem;
}

.cocktail-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 2rem;
}

.cocktail-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 2rem;
}

.cocktail-card h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.cocktail-card p.description {
    color: #6c757d;
    margin-bottom: 1rem;
}

.cocktail-card ul.ingredients, .cocktail-card ol.instructions {
    list-style-type: none;
    padding-left: 10;
}

.cocktail-card li {
    background-color: #e9ecef;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
    padding: 8px 12px;
}

.footer {
    text-align: center;
    padding: 2rem;
    background-color: #eef1f8;
    border-top: 1px solid #dfe4ea;
}

.input-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.input-section label {
    margin-right: 5px;
}

.input-section input[type="text"] {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ced4da;
}

.input-section button {
    padding: 8px 16px;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.input-section button:hover {
    background-color: #0b5ed7;
}
