/* Results Phase Styles */
.results-card {
    background: #F8F9FA;
    border: 3px solid #DEE2E6;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
}

.results-summary {
    background: white;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.results-summary h3 {
    margin: 0 0 1rem 0;
    text-align: center;
    color: #333;
    font-size: 1.4rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.result-row:last-child {
    border-bottom: none;
}

.profit-row {
    background: #E8F5E8;
    border: 2px solid #4CAF50;
    border-radius: 4px;
    padding: 1rem;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.positive {
    color: #4CAF50;
    font-weight: bold;
}

.negative {
    color: #F44336;
    font-weight: bold;
}

/* Learning Section */
.learning-section {
    background: linear-gradient(135deg, #E1F5FE 0%, #B3E5FC 100%);
    border: 2px solid #03A9F4;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.learning-section h3 {
    margin: 0 0 1rem 0;
    color: #0277BD;
    font-size: 1.3rem;
}

.learning-section p {
    margin: 0.5rem 0;
    color: #333;
    line-height: 1.4;
}

/* Savings Section */
.savings-section {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    border: 2px solid #9C27B0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.savings-section h3 {
    margin: 0 0 1rem 0;
    color: #7B1FA2;
    font-size: 1.3rem;
}

.savings-goal {
    margin-top: 1rem;
}

.progress-bar {
    background: #E0E0E0;
    border: 2px solid #333;
    border-radius: 10px;
    height: 20px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-fill {
    background: linear-gradient(90deg, #4CAF50 0%, #45A049 100%);
    height: 100%;
    transition: width 0.5s ease;
    width: 0%;
}

/* Action Buttons */
.next-day-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-day-btn, .save-money-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    border: 3px solid #E65100;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

.save-money-btn {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    border-color: #6A1B9A;
}

.next-day-btn:hover, .save-money-btn:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 8px rgba(0,0,0,0.3);
}
