/**
 * Stinger Savings Calculator Styles
 */

.stinger-calculator {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.stinger-calculator * {
    box-sizing: border-box;
}

.stinger-calculator .row-container {
    display: flex;
    background-color: #fff;
    min-height: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stinger-calculator .column {
    width: 50%;
    padding: 2rem;
    display: flex;
    align-items: center;
}

.stinger-calculator .column.right {
    justify-content: center;
    background-color: #f9f9f9;
    border-radius: 0 8px 8px 0;
}

.stinger-calculator .inputs {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 1.5rem;
}

.stinger-calculator .inputs > p {
    margin: 0 0 1rem 0;
    font-size: 18px;
    line-height: 1.4;
    color: #333;
}

.stinger-calculator .input-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stinger-calculator .input-container label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.stinger-calculator .input-container input {
    width: 100%;
    max-width: 200px;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f5f5f5;
    transition: all 0.2s;
}

.stinger-calculator .input-container input:focus {
    outline: none;
    border-color: #96C93D;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(150, 201, 61, 0.2);
}

.stinger-calculator .output-placeholder {
    text-align: center;
    color: #999;
    padding: 2rem;
}

.stinger-calculator .output-placeholder img {
    max-width: 100%;
    height: auto;
}

.stinger-calculator .outputs {
    text-align: center;
    width: 100%;
}

.stinger-calculator .outputs.hide {
    display: none;
}

.stinger-calculator .outputs div {
    margin-bottom: 1rem;
    font-size: 16px;
    color: #555;
}

.stinger-calculator .outputs .cost-saved {
    color: #96C93D;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 2rem;
}

.stinger-calculator .outputs .cost-saved span {
    display: block;
    font-size: 36px;
}

.stinger-calculator .outputs .stat-label {
    font-size: 14px;
    color: #888;
}

.stinger-calculator .outputs .stat-value {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.stinger-calculator .stinger-green {
    color: #96C93D;
}

/* Responsive */
@media (max-width: 768px) {
    .stinger-calculator .row-container {
        flex-direction: column;
    }

    .stinger-calculator .column {
        width: 100%;
    }

    .stinger-calculator .column.right {
        border-radius: 0 0 8px 8px;
    }

    .stinger-calculator .input-container input {
        max-width: 100%;
    }
}
