/* Revenue Loss Calculator Styles */

.rlc-calculator-container {
    box-sizing: border-box;
}

.rlc-calculator-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.rlc-inputs-column {
    display: flex;
    flex-direction: column;
}

.rlc-result-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
}

.rlc-input-group {
    display: flex;
    flex-direction: column;
}

.rlc-input-group:last-child {
    margin-bottom: 0 !important;
}

.rlc-input-label {
    display: block;
    font-weight: 500;
}

.rlc-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rlc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Webkit (Chrome, Safari, Edge) */
.rlc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Firefox */
.rlc-slider::-moz-range-thumb {
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.rlc-input-display {
    min-width: 80px;
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
}

.rlc-result-label {
    font-weight: 600;
    text-align: center;
}

.rlc-result-value {
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
}

.rlc-cta-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
}

.rlc-cta-button:hover {
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 767px) {
    .rlc-calculator-wrapper {
        flex-direction: column;
    }
    
    .rlc-inputs-column {
        width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 30px;
    }
    
    .rlc-result-column {
        width: 100%;
        flex: 0 0 100%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .rlc-slider-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .rlc-input-display {
        width: 100%;
        margin-top: 8px;
    }
}
