.unit-converter-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.unit-converter-tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.tab-button:hover {
    background-color: #ddd;
}

.tab-button.active {
    background-color: #007bff;
    color: white;
}

.tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.tab-content.active {
    display: block;
}

.converter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.converter-column {
    flex: 1;
    min-width: 250px;
}

.converter-input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.converter-select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

label {
    font-weight: bold;
}

// Add these styles to the existing CSS file

.converter-button-row {
    margin-top: 15px;
    text-align: center;
}

.convert-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.convert-button:hover {
    background-color: #0056b3;
}