/* Milliliter to Ounce Converter Styles */
.volume-converter .conversion-result {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.volume-converter .display-4 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: #0d6efd;
}

.volume-converter .input-group-text {
    min-width: 60px;
    justify-content: center;
}

.volume-converter .table {
    font-size: 0.85rem;
}

.volume-converter .table th {
    font-weight: 500;
}

.volume-converter .form-switch .form-check-input {
    width: 2.5em;
    height: 1.5em;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .volume-converter .display-4 {
        font-size: 2rem;
    }
    
    .volume-converter .input-group-text {
        min-width: 50px;
    }
}