.cic-container {
    font-family: 'Arial', sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.cic-header {
    text-align: center;
    margin-bottom: 30px;
    color: #004d8b;
}
.cic-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.cic-input-section, .cic-results-section {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.cic-input-group {
    margin-bottom: 20px;
}
.cic-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}
.cic-input-group input[type="number"], 
.cic-input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}
.cic-slider {
    width: 100%;
    margin-top: 10px;
}
.cic-button {
    background: #f7931e;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.cic-button:hover {
    background: #e07e0c;
}
.cic-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.cic-results-title {
    font-size: 20px;
    font-weight: 700;
    color: #004d8b;
}
.cic-result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.cic-result-label {
    font-weight: 600;
}
.cic-result-value {
    font-weight: 700;
    color: #004d8b;
}
.cic-total-box {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}
.cic-total-label {
    font-size: 18px;
    font-weight: 700;
}
.cic-total-value {
    font-size: 24px;
    color: #f7931e;
    font-weight: 700;
}
.cic-chart-container {
    height: 250px;
    margin: 25px 0;
}
.cic-summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.cic-summary-table th, 
.cic-summary-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.cic-summary-table th {
    background: #f5f5f5;
    font-weight: 600;
}
@media (max-width: 768px) {
    .cic-wrapper {
        flex-direction: column;
    }
}