/* Odoo 16/17 Style Emulation */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    background-color: #f9f9f9;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.odoo-navbar {
    background-color: #714B67;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-odoo {
    background-color: #714B67;
    color: white;
    border-radius: 4px;
    border: none;
    transition: all 0.2s;
}

.btn-odoo:hover {
    background-color: #5d3b54;
    color: white;
}

.btn-odoo:disabled {
    background-color: #a48ba0;
    cursor: not-allowed;
}

.odoo-card {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04) !important;
}

/* Drag and Drop Zone */
.odoo-dropzone {
    border: 2px dashed #ced4da;
    border-radius: 8px;
    padding: 3rem 1rem;
    text-align: center;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.odoo-dropzone:hover,
.odoo-dropzone-active {
    border-color: #714B67;
    background-color: #f1ecf0;
}

.table th {
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
}

.badge {
    font-weight: 500;
    padding: 0.4em 0.8em;
}