/* Recipe List Component Styles */
.recipe-list h2, .calendar h2, .inventory h2, .shopping-list h2 {
    color: #34495e;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.recipe-list ul {
    list-style: none;
    padding: 0;
}

.recipe-item {
    padding: 15px 20px;
    margin: 8px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    cursor: grab;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.recipe-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.recipe-name {
    font-weight: 500;
    font-size: 1.1rem;
    color: #2c3e50;
}

.recipe-actions {
    display: flex;
    gap: 8px;
}

.edit-btn, .delete-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edit-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.edit-btn:hover {
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.delete-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.delete-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

/* Empty Recipes State */
.empty-recipes {
    text-align: center;
    margin: 40px 0;
}

.seed-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 200px;
}

.seed-btn:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.5);
}

.seed-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Recipe items mobile styles */
    .recipe-item {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .recipe-actions {
        align-self: flex-end;
        gap: 6px;
    }

    .edit-btn, .delete-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-height: 36px;
    }

    /* Mobile seed button */
    .seed-btn {
        padding: 16px 32px;
        font-size: 20px;
        min-width: 160px;
    }
}
