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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    padding: 20px;
    color: #000;
    line-height: 1.4;
}

.container {
    max-width: 320px;
    margin: 0 auto;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.instructions {
    margin-bottom: 30px;
}

.instructions p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.meal-item {
    margin-bottom: 25px;
    cursor: pointer;
}

.meal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.meal-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.padlock {
    width: 16px;
    height: 16px;
    display: none;
}

.meal-item.locked .padlock {
    display: block;
}

.meal-tags {
    margin-bottom: 5px;
}

.meal-difficulty {
    font-size: 0.85rem;
    color: #999;
    margin-right: 10px;
}

.meal-cuisine {
    font-size: 0.85rem;
    color: #666;
}

.ingredients {
    display: none;
    margin-top: 10px;
    padding-left: 15px;
}

.meal-item.locked .ingredients {
    display: block;
}

.recipe-instructions {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ingredient {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ingredient.crossed {
    text-decoration: line-through;
    opacity: 0.5;
}

.controls {
    margin: 20px 0;
}

.copy-section {
    display: none;
    margin-top: 10px;
}

.copy-section.show {
    display: block;
}

.reload-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
    margin-bottom: 10px;
}

.reload-btn:hover {
    background: #333;
}

.copy-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
}

.copy-btn:hover {
    background: #00266e;
}

.copy-btn.copied {
    background: #27ae60;
}

.copy-message {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
    display: none;
}
