
/* calculator/static/calculator/css/index.css */
/* Styles extracted from index.html */

.dual-currency .main-currency {
    font-size: 0.75em;
    font-weight: bold;
}

.dual-currency .converted-currency {
    font-size: 0.6em;
    opacity: 0.8;
}

.rate-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.rate-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.section-title {
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 8px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.cost-item, .room-item {
    transition: all 0.3s ease;
}

.cost-item:hover, .room-item:hover {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .chart-container {
        min-height: 220px;
        margin: 10px 0;
    }
    
    #roiChart {
        max-height: 200px;
        min-height: 180px;
        width: 100% !important;
        touch-action: pan-y pinch-zoom;
    }
    
    .rate-card {
        padding: 10px;
    }
    
    .table-responsive {
        font-size: 0.8rem;
    }
    
    .table-responsive td, 
    .table-responsive th {
        padding: 0.3rem;
    }
}

.chart-container {
    position: relative;
    width: 100%;
    min-height: 200px;
    height: auto;
    overflow: hidden;
}

@media print {
    .no-print {
        display: none !important;
    }
    .card {
        border: none !important;
        box-shadow: none !important;
    }
    .currency-context-header {
        border: 1px solid #ccc !important;
        background-color: #f8f9fa !important;
    }
}