.angie-calorie-tracker {
    padding: 30px;
    background: #f4fcf7;
    border-radius: 16px;
    color: #2c3e50;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

.tracker-header {
    text-align: center;
    margin-bottom: 30px;
}

.tracker-title {
    color: #27ae60;
    margin-bottom: 5px;
}

.tracker-subtitle {
    color: #7f8c8d;
    font-size: 0.9em;
}

.macro-circles {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.macro-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e8f8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #1abc9c;
    font-weight: bold;
    color: #16a085;
}

.meal-category {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.add-food-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.add-food-btn:hover {
    background: #219653;
    transform: translateY(-2px);
}