<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.rlc-calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.rlc-calculator-container h1 {
    grid-column: 1 / -1;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.rlc-input-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.chart-header{
    line-height: 0 !important;
    margin:0px !important;
    padding-bottom:60px;
}
.rlc-input-group {
    margin-bottom: 0;
}

.rlc-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
    font-size: 15px;
}

.rlc-input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

#rlc-calculate-btn {
    padding: 14px;
    background-color: #ed9331;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

#rlc-calculate-btn:hover {
    background-color: #4f69b0;
}

.rlc-results-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rlc-results-section h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
}

.rlc-chart-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.rlc-total-loss {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    font-size: 20px;
    margin-top: 20px;
}

.rlc-total-loss span:first-child {
    font-weight: bold;
    color: #333;
}

.rlc-total-loss span:last-child {
    font-size: 28px;
    font-weight: bold;
    color: #e74c3c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rlc-calculator-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rlc-results-section h2 {
        margin-top: 20px;
    }
}</pre></body></html>