.cc-converter {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}

.cc-converter h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.cc-converter h2 i {
    margin-right: 10px;
    color: #3498db;
}

.cc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cc-group {
    flex: 1;
}

.cc-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.cc-group input,
.cc-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.cc-swap-btn {
    background: #f1f1f1;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s;
}

.cc-swap-btn:hover {
    background: #e0e0e0;
}

.cc-submit-btn {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.cc-submit-btn:hover {
    background: #2980b9;
}

.cc-result {
    margin-top: 20px;
    text-align: center;
    display: none;
}

.cc-result-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.cc-result-text {
    color: #777;
    margin: 5px 0;
}

.cc-rate {
    font-size: 14px;
    color: #555;
}

/* Responsive */
@media (max-width: 600px) {
    .cc-row {
        flex-direction: column;
    }
    
    .cc-swap-btn {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}