page[data-hash="dashboard"] {

    body {
        font-family: 'Roboto', sans-serif;
    }
    
    .autocomplete-container {
        position: relative;
    }
    
    /* Stylized Input Box - Matches Image */
    .input-group-lg {
        position: relative;
        border: 2px solid #2563eb;
        border-radius: 16px;
        padding: 4px;
        background: white;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .input-group-lg:hover {
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    }
    
    .input-group-lg:focus-within {
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
        border-color: #1d4ed8;
    }
    
    .input-group-lg .input-group-text {
        background: transparent;
        border: none;
        padding: 12px 16px;
        color: #6b7280;
    }
    
    .input-group-lg .form-control {
        background: transparent;
        border: none;
        padding: 12px 8px;
        font-size: 15px;
        color: #1f2937;
    }
    
    .input-group-lg .form-control:focus {
        box-shadow: none;
        background: transparent;
    }
    
    .input-group-lg .form-control::placeholder {
        color: #9ca3af;
        font-weight: 400;
    }
    
    .input-group-lg .btn-primary,
    .input-group-lg #searchButton {
        border: none;
        border-radius: 12px;
        padding: 12px 24px;
        font-weight: 500;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 15px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }
    
    .input-group-lg .btn-primary:hover,
    .input-group-lg #searchButton:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }
    
    .input-group-lg .btn-primary:active,
    .input-group-lg #searchButton:active {
        transform: translateY(0);
    }
    
    
    .autocomplete-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: white;
        border-radius: 12px;
        max-height: 480px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 2px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        display: none;
        border: 1px solid #e5e7eb;
    }
    
    .autocomplete-dropdown.show {
        display: block;
        animation: slideDown 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-12px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .autocomplete-dropdown::-webkit-scrollbar {
        width: 8px;
    }
    
    .autocomplete-dropdown::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .autocomplete-dropdown::-webkit-scrollbar-thumb {
        background: #e0e0e0;
        border-radius: 4px;
    }
    
    .autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
        background: #bdbdbd;
    }
    
    .autocomplete-item {
        padding: 16px 20px;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        border-bottom: 1px solid #f5f5f5;
        position: relative;
        overflow: hidden;
    }
    
    .autocomplete-item:last-child {
        border-bottom: none;
    }
    
    .autocomplete-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: currentColor;
        transform: scaleY(0);
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .autocomplete-item:hover,
    .autocomplete-item.active {
        background-color: #fafafa;
        transform: translateX(4px);
    }
    
    .autocomplete-item:hover::before,
    .autocomplete-item.active::before {
        transform: scaleY(1);
    }
    
    .autocomplete-item:active {
        transform: translateX(4px) scale(0.99);
    }
    
    .autocomplete-item-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
        flex-shrink: 0;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 20px;
    }
    
    .autocomplete-item:hover .autocomplete-item-icon {
        transform: scale(1.08);
    }
    
    .autocomplete-item-content {
        flex-grow: 1;
        min-width: 0;
    }
    
    .autocomplete-item-title {
        font-weight: 500;
        color: #212121;
        margin-bottom: 4px;
        font-size: 15px;
        line-height: 1.4;
    }
    
    .autocomplete-item-subtitle {
        font-size: 13px;
        color: #757575;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .autocomplete-item-arrow {
        color: #bdbdbd;
        font-size: 18px;
        margin-left: 12px;
        opacity: 0;
        transform: translateX(-8px);
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .autocomplete-item:hover .autocomplete-item-arrow {
        opacity: 1;
        transform: translateX(0);
    }
    
    .dynamic-inputs-container {
        display: none;
        animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 16px;
        padding: 24px;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    }
    
    .dynamic-inputs-container.show {
        display: block;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .file-upload-area {
        border: 2px dashed #d1d5db;
        border-radius: 12px;
        padding: 48px 32px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: white;
        position: relative;
        overflow: hidden;
    }
    
    .file-upload-area::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .file-upload-area:hover {
        border-color: #667eea;
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    }
    
    .file-upload-area:hover::before {
        opacity: 1;
    }
    
    .file-upload-area.dragover {
        border-color: #667eea;
        background-color: #f0f4ff;
        border-style: solid;
        transform: scale(1.01);
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
    }
    
    .file-upload-icon {
        font-size: 56px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
    }
    
    .file-upload-area:hover .file-upload-icon {
        transform: translateY(-6px) scale(1.1);
    }
    
    .file-upload-area p {
        position: relative;
        z-index: 1;
    }
    
    .uploaded-file {
        display: flex;
        align-items: center;
        padding: 16px 20px;
        background: white;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        margin-bottom: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        animation: slideInFile 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    }
    
    @keyframes slideInFile {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .uploaded-file:hover {
        border-color: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        transform: translateY(-2px);
    }
    
    .uploaded-file-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
        font-size: 20px;
        color: white;
        box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
    }
    
    .uploaded-file-info {
        flex-grow: 1;
        min-width: 0;
    }
    
    .uploaded-file-name {
        font-weight: 600;
        font-size: 14px;
        color: #1f2937;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 4px;
    }
    
    .uploaded-file-size {
        font-size: 12px;
        color: #6b7280;
        font-weight: 500;
    }
    
    .selected-action {
        display: none;
        align-items: center;
        padding: 16px 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 14px;
        margin-bottom: 20px;
        animation: slideInAction 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    }
    
    @keyframes slideInAction {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .selected-action.show {
        display: flex;
    }
    
    .selected-action .autocomplete-item-icon {
        background: white !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .selected-action .autocomplete-item-title {
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    
    .selected-action .autocomplete-item-subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-size: 13px;
    }
    
    .selected-action .btn-light {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }
    
    .selected-action .btn-light:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
    
    .form-control,
    .form-select {
        border-radius: 10px;
        border: 2px solid #e5e7eb;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 12px 16px;
        font-size: 15px;
        background: white;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    .form-control:hover,
    .form-select:hover {
        border-color: #d1d5db;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }
    
    .form-control:focus,
    .form-select:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
        background: white;
    }
    
    textarea.form-control {
        resize: vertical;
        min-height: 120px;
        line-height: 1.6;
    }
    
    .form-label {
        font-weight: 600;
        color: #374151;
        margin-bottom: 10px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .form-label::before {
        content: '';
        width: 4px;
        height: 16px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 2px;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 12px 32px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        font-size: 15px;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
    
    .btn-primary:active {
        transform: translateY(0);
    }
    
    .btn-outline-secondary {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid #e5e7eb;
        color: #6b7280;
        font-weight: 600;
        padding: 12px 28px;
        border-radius: 10px;
    }
    
    .btn-outline-secondary:hover {
        transform: translateY(-2px);
        border-color: #667eea;
        color: #667eea;
        background: rgba(102, 126, 234, 0.05);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    }
    
    .card {
        border-radius: 20px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
    }
    
    .card:hover {
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12) !important;
        transform: translateY(-2px);
    }
    
    .form-check-input {
        width: 22px;
        height: 22px;
        cursor: pointer;
        border: 2px solid #d1d5db;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: 0;
    }
    
    .form-check-input:hover {
        border-color: #667eea;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    }
    
    .form-check-input:checked {
        background-color: #667eea;
        border-color: #667eea;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    }
    
    .form-check-label {
        cursor: pointer;
        margin-left: 10px;
        user-select: none;
        font-weight: 500;
        color: #374151;
    }
    
    .form-check {
        padding: 12px 16px;
        background: white;
        border-radius: 10px;
        border: 2px solid #e5e7eb;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .form-check:hover {
        border-color: #667eea;
        background: rgba(102, 126, 234, 0.02);
    }
    
    .autocomplete-dropdown-header {
        padding: 12px 20px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-bottom: 1px solid #e0e0e0;
        font-size: 12px;
        font-weight: 600;
        color: #667eea;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: sticky;
        top: 0;
        z-index: 1;
    }
    
    .autocomplete-empty {
        padding: 60px 20px;
        text-align: center;
        color: #9e9e9e;
    }
    
    .autocomplete-empty-icon {
        font-size: 64px;
        margin-bottom: 20px;
        opacity: 0.3;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .autocomplete-empty-text {
        font-size: 16px;
        font-weight: 500;
        color: #6b7280;
    }
    
    input[type="number"] {
        -moz-appearance: textfield;
    }
    
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

}
