 /* CSS for the Decimal to Binary Converter Section */
 section.converter-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 120px auto; /* Added top margin to prevent overlap with navbar */
    max-width: 600px; /* Adjust based on your page layout */
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #050505; /* Adjust based on your theme */
}

.converter-section h1 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff; /* Adjust color based on your theme */
    word-spacing: 4px; /* Adjust the spacing as needed */
}

.converter-section input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.converter-section input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.converter-section button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #3498db;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.converter-section button:hover {
    background-color: #2980b9;
}

.converter-section #result {
    margin-top: 20px;
    font-size: 18px;
    color: #eee8e8; /* Adjust color based on your theme */
    text-align: center;
}