* {
    font-family: Helvetica, Arial, sans-serif;
}

html {
    height: 100%;
    min-height: 100vh;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;

}

main {
    min-height: 100vh;
}

h1 {
    margin-top: 6px;
}

.icon {
    font-size: 48px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed #ccc;
}

.container.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    min-height: 100vh;

}

.ingredients-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingredients {
    margin-top: 0;
}

.recipe {
    padding: 10px;
}

.meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.recipe-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 12px;
}

#save-recipe[aria-pressed="true"] {
    background-color: #e8f5e9;
}

.saved-link {
    margin-top: 12px;
    text-decoration: none;
    color: #1b4b91;
}

.saved-page .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px;
}

.saved-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.saved-empty {
    color: #666;
}

.saved-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.saved-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.saved-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.saved-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 16px;
}