.recipe-calculator-container {
    font-family: 'Trade Winds', cursive;
    max-width: 100%;
    margin: 20px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.recipe-header {
    text-align: center;
    margin-bottom: 20px;
}

.recipe-header h2 {
    margin-top: 0;
    font-size: 28px;
    color: #0f1729;
}

.recipe-image {
    margin: 15px 0;
}

.recipe-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.recipe-servings-control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.servings-button {
    background-color: #0f1729;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.servings-button:hover {
    background-color: #293856;
}

.servings-display {
    font-size: 20px;
    font-weight: bold;
    margin: 0 5px;
}

.recipe-ingredients h3 {
    margin-top: 0;
    padding: 10px 0;
    color: #0f1729;
    text-align: center;
    font-size: 22px;
}

.ingredients-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.ingredients-table tr.odd {
    background-color: #0f1729;
    color: #fff;
}

.ingredients-table tr.even {
    background-color: #f2f2f2;
    color: #000;
}

.ingredients-table td {
    padding: 12px 15px;
}

.ingredient-amount {
    width: 15%;
    text-align: right;
}

.ingredient-unit {
    width: 20%;
}

.ingredient-name {
    width: 65%;
}

.recipe-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.recipe-button {
    background-color: #0f1729;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Trade Winds', cursive;
}

.recipe-button:hover {
    background-color: #293856;
}

@media print {
    .recipe-calculator-container {
        box-shadow: none;
    }
    
    .recipe-actions {
        display: none;
    }
} 