﻿

.highlight {
    color: #ecf0f1;
    font-weight: bold;
}

.strategy-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 30px;
    margin-top: 20px;
}

h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.strategy {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

    .strategy:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .strategy h3 {
        color: #3498db;
    }

.ai-tip {
    background-color: #e8f6fd;
    border-left: 5px solid #3498db;
    padding: 15px;
    margin-top: 20px;
    font-style: italic;
}

.button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .button:hover {
        background-color: #2980b9;
    }

#savings-calculator {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

    #savings-calculator input[type="number"] {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

#result {
    font-weight: bold;
    margin-top: 20px;
    font-size: 18px;
}
