.unit-converter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.unit-converter-container h1 {
    text-align: center;
    color: #2c3e50;
	font-size: 32px;
    margin-bottom: 20px;
}

.input-section {
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group.full-width {
    width: 100%;
}

.input-row {
    display: flex;
    gap: 10px;
}

.input-row .input-group {
    flex: 1;
}

.input-row .input-group.broder {
    flex: 2; /* Broader "From Unit" dropdown */
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #34495e;
    font-weight: bold;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.results-section {
    text-align: center;
}

.results-section h3 {
    color: #34495e;
    margin-bottom: 10px;
}

.results {
    padding: 15px;
    background: #e8f5e9;
    border-radius: 5px;
    font-size: 16px;
    color: #27ae60;
}

.results p {
    margin: 10px 0;
}

@media (max-width: 600px) {
    .unit-converter-container {
        padding: 15px;
    }
    .input-row {
        flex-direction: column;
    }
    .input-row .input-group.broder {
        flex: 1; /* Reset broader dropdown on mobile */
    }
}