/* Style for Savings Calculator */
#savings-calculator {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    border: 1px solid #444;
    border-radius: 12px;
    background-color: #333;
    font-family: 'Roboto', Arial, sans-serif;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    color: #478C94;
}

#savings-calculator h2 {
    text-align: center;
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
}

#savings-calculator label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #ffffff;
    font-size: 2rem;
}

#savings-calculator input {
    width: calc(100% - 24px);
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #555;
    border-radius: 6px;
    font-size: 1.5rem;
    box-sizing: border-box;
    background-color: #444;
    color: #ffffff;
}

#savings-calculator button {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #478C94;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#savings-calculator button:hover {
    background-color: #356f6f;
}

#savings-calculator h3 {
    margin-top: 25px;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
}

#savings-calculator span {
    font-weight: 700;
    color: #478C94;
    font-size: 2rem;
}

#result-section {
    text-align: center;
    margin-top: 20px;
}

#result-section button {
    padding: 12px 24px;
    background-color: #478C94;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#result-section button:hover {
    background-color: #356f6f;
}

#savings-text {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin-top: 15px;
}

#annualSavings {
    font-weight: 700;
    color: #ff5722; /* Jaskrawy kolor dla wyróżnienia */
    font-size: 3rem;
    text-shadow: 0px 0px 8px rgba(255, 87, 34, 0.8); /* Poświata */
}