/* ===================================================================
   FOOD SEARCH SPECIFIC STYLES
   =================================================================== */

/* Search Container (Wider, overrides the 500px in the core file) */
.food-search-container {
    max-width: 650px; 
    width: 90%;
    margin: 40px auto;
    background: #f7f7f7;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Search Input Styling */
#search-input {
    border: 2px solid #32cd32; /* Highlight border */
    /* Other input styles are inherited from calculators-core.css */
}

/* List/Results Styling */
#results-list {
    list-style: none;
    padding: 0;
}
#results-list li {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #fff;
    border-left: 5px solid #32cd32;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.food-name {
    font-weight: 600;
    color: #333;
}
.food-calorie {
    font-weight: 700;
    color: #228B22;
}
#initial-info {
    text-align: center;
    color: #666;
}