/* Base styles */
.sip-calculator-augment-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sip-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.sip-calculator-section {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.sip-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.sip-section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #0083ff 0%, #0070d8 100%);
    border-radius: 2px;
    margin-right: 12px;
}

/* Input fields and sliders */
.sip-input-group {
    margin-bottom: 25px;
}

.sip-input-label {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 12px;
}

.sip-label-text {
    font-weight: 500;
    color: #334155;
    font-size: 0.95rem;
}

.sip-label-value {
    font-weight: 600;
    color: #0059ff;
    font-size: 1.1rem;
    margin-left: auto;
}

.sip-slider-container {
    position: relative;
    margin-bottom: 8px;
}

.sip-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.sip-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0083ff 0%, #0070d8 100%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 180, 216, 0.3);
    transition: transform 0.2s ease;
}

.sip-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.sip-slider-range {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 5px;
}

/* Chart section */
.sip-chart-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sip-chart-container {
    width: 300px;
    height: 300px;
    margin-bottom: 30px;
    position: relative;
}

.sip-chart-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.sip-chart-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.sip-chart-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Results grid */
.sip-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.sip-result-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sip-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sip-result-amount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.sip-result-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.invested-amount {
    color: #f59e0b;
}

.returns-amount {
    color: #0730ff;
}

.total-amount {
    color: #0730ff;
}

/* Legend */
.sip-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.sip-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sip-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.sip-legend-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 768px) {
    .sip-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .sip-chart-container {
        width: 250px;
        height: 250px;
    }

    .sip-results-grid {
        grid-template-columns: 1fr;
    }
}
