/* assets/css/style.css */
#protein-calculator-app {
    font-family: 'Dark Grotesque', sans-serif;
    background-color: #f4f4f4;
    padding: 25px;
    border-radius: 8px;
    color: #414141;
    max-width: 800px;
    margin: 20px auto;
}

.cp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cp-section {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.cp-section h3 {
    margin-top: 0;
    color: #000000;
    border-bottom: 2px solid #6AD9AF;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.cp-button {
    background-color: #6AD9AF;
    color: #414141;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
}

.cp-button:hover {
    opacity: 0.9;
}

#cp-results-summary {
    text-align: center;
    padding: 20px;
    background-color: #414141;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
}

#cp-results-summary h3 {
    margin-top: 0;
    color: #6AD9AF;
}

.summary-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.summary-item p {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}
.summary-item span {
    font-size: 14px;
    opacity: 0.8;
}

.deficit { color: #ff6b6b; }
.superavit { color: #6AD9AF; }

.meal-item, .supplement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.meal-item button, .supplement-item button {
    background: #ff6b6b;
    color: white;
    border: none;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 50%;
}