.fd-calculator-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
}

.fd-calculator-heading {
    color: #F97316; /* Orange accent */
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

.fd-calculator-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.fd-input-section {
    flex: 1;
}

.fd-input-group {
    margin-bottom: 25px;
}

.fd-input-group label {
    display: block;
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 8px;
    font-weight: 500;
}

.fd-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 150px;
}

.fd-input-icon {
    position: absolute;
    left: 10px;
    color: #6B7280;
}

.fd-input-wrapper input {
    width: 100%;
    padding: 8px 10px 8px 35px;
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    background: #F9FAFB;
    font-size: 16px;
}

.fd-time-period-wrapper {
    display: flex;
    gap: 10px;
}

.fd-time-period-wrapper select {
    padding: 8px;
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    background: #F9FAFB;
    font-size: 16px;
    width: 100px;
}

input[type="range"] {
    width: 100%;
    accent-color: #F97316; /* Orange accent */
    margin-top: 10px;
}

.fd-result-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fd-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fd-chart-wrapper {
    position: relative;
    height: 180px;
    width: 180px;
}

.fd-chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 12px;
    color: #4B5563;
}

.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.legend-dot.investment {
    background: #F97316;
}

.legend-dot.returns {
    background: #1D4ED8; /* Bolder blue */
}

.fd-result-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.fd-result-item {
    display: flex;
    justify-content: space-between;
    padding: 0;
    background: none;
}

.fd-result-item label {
    font-size: 14px;
    color: #4B5563;
    font-weight: 500;
}

.fd-result-item span {
    font-size: 16px;
    font-weight: 500;
    color: #1F2937;
}

/* Moderate look adjustments */
.fd-calculator-container {
    border: 1px solid #E5E7EB;
}

.fd-input-wrapper input,
.fd-time-period-wrapper select {
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-webkit-slider-thumb {
    background: #F97316;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    background: #F97316;
    border-radius: 50%;
    cursor: pointer;
}

/* Responsive design */
@media (max-width: 768px) {
    .fd-calculator-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .fd-chart-wrapper {
        margin: 0 auto;
    }

    .fd-result-details {
        gap: 10px;
    }
}