/*--------------------------------------------------------------
# Converter Styles
--------------------------------------------------------------*/
.converter-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
}

.converter-box h3 {
    color: #ff8c00 !important; /* This is the new orange color */
    margin-top: 0;
    margin-bottom: 20px;
}

.converter-box .input-group {
    margin-bottom: 20px;
}

.converter-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.converter-box input[type="number"] {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.converter-box button {
    background-color: #ff8c00; /* This is the dark orange color */
    color: #fff; /* Ensure the text is white for contrast */
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.converter-box button:hover {
    background-color: #e67d00; /* This is a darker shade of orange */
}

.converter-box .result {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.converter-input {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}