:root {
    --iris-yellow: #FFC107;
    --iris-yellow-dark: #EAB308;
    --iris-dark: #1A1A1B;
    --iris-light: #F8F9FA;
    --iris-white: #FFFFFF;
    --iris-gray: #64748B;
    --iris-border: #E2E8F0;
    --iris-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

body {
    background-color: #FAFAFA;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--iris-dark);
}

/* Card Styling */
.card-enterprise {
    background: var(--iris-white);
    border: 1px solid var(--iris-border);
    border-radius: 1.25rem;
    box-shadow: var(--iris-shadow);
    transition: all 0.3s ease;
}

.card-enterprise:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Buttons */
.btn-enterprise-primary {
    background-color: var(--iris-yellow);
    border-color: var(--iris-yellow);
    color: var(--iris-dark);
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 0.75rem;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
}

.btn-enterprise-primary:hover {
    background-color: var(--iris-yellow-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-enterprise {
    border-radius: 0.75rem;
    font-weight: 600;
}

/* Form Controls */
.form-control, .form-select {
    border-radius: 0.75rem;
    border: 1px solid var(--iris-border);
    padding: 0.75rem 1rem;
    background-color: var(--iris-white);
    transition: border-color 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--iris-yellow);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

.form-label.fw-bold {
    color: #475569;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

/* Navigation Tabs */
.nav-pills-enterprise .nav-link {
    color: var(--iris-gray);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.nav-pills-enterprise .nav-link.active {
    background-color: var(--iris-yellow) !important;
    color: var(--iris-dark) !important;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

/* Field Builder Items */
.field-item {
    padding: 1.25rem;
    background: var(--iris-white);
    border: 1px solid var(--iris-border);
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.field-drag-handle {
    cursor: grab;
    color: var(--iris-border);
    margin-right: 1rem;
}

/* Section Title Line */
.section-title-line {
    border-left: 4px solid var(--iris-yellow);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-pane {
    animation: fadeIn 0.3s ease-out;
}
