.cc-converter.modern {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    padding: 25px;
    border-radius: 20px;
    color: #fff;
    max-width: 550px;
    margin: 40px auto;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s ease;
}
.cc-converter.modern:hover {
    transform: scale(1.03);
}
.cc-converter h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.cc-field {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}
.cc-field input, .cc-field select {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 16px;
}
.cc-field input:focus, .cc-field select:focus {
    box-shadow: 0 0 12px rgba(255,255,255,0.7);
}
button#cc-convert, button#cc-length-convert, button#cc-weight-convert,
button#cc-temp-convert, button#cc-time-convert {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(to right, #ffcc33, #ff6666);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}
button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.35);
}
#cc-result, #cc-length-result, #cc-weight-result, #cc-temp-result, #cc-time-result {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin-top: 12px;
}


.cc-converter.modern:hover { transform: scale(1.03); }
.cc-converter h3 { text-align: center; margin-bottom: 20px; font-size: 26px; text-shadow: 1px 1px 3px rgba(0,0,0,0.2); }
.cc-converter input, .cc-converter select, .cc-converter button {
    width: 100%; padding: 12px; margin-bottom: 15px; border-radius: 12px; border: none; font-size: 16px;
}
.cc-converter button {
    background: linear-gradient(to right, #ffcc33, #ff6666);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cc-converter button {
    background: linear-gradient(to right, #ffcc33, #ff6666);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.cc-converter button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.35);
}
