.jcic-converter {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.jcic-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.jcic-section h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.5em;
}

.jcic-input-group {
    margin-bottom: 15px;
}

.jcic-input-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

.jcic-input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.jcic-result {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}

button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #45a049;
}

#jcic-portfolio-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#jcic-portfolio-table th,
#jcic-portfolio-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .jcic-section {
        padding: 15px;
    }
    
    .jcic-input-group input {
        font-size: 14px;
    }
    
    #jcic-portfolio-table {
        font-size: 14px;
    }
}