        :root {
            --primary-color: #6b60ad;
            --primary-light: #9e94e0;
            --primary-dark: #38307d;
            --secondary-color: #f5f5f5;
            --error-color: #d32f2f;
            --text-primary: #212121;
            --text-secondary: #757575;
            --divider-color: #bdbdbd;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--primary-color);
            color: var(--text-primary);
            line-height: 1.6;
            padding: 20px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .header {
            padding: 24px;
            background-color: var(--primary-dark);
            color: white;
            text-align: center;
        }

        .header img {
            height: 60px;
            margin-bottom: 16px;
        }

        .header h1 {
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .header p {
            font-size: 16px;
            opacity: 0.9;
        }

        .form-container {
            padding: 24px;
        }

        .form-section {
            margin-bottom: 32px;
        }

        .form-section h2 {
            font-size: 20px;
            font-weight: 500;
            color: var(--primary-dark);
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--divider-color);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: flex;
            gap: 16px;
        }

        .form-row .form-group {
            flex: 1;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-primary);
        }

        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .radio-option {
            display: flex;
            align-items: center;
        }

        .radio-option input {
            margin-right: 8px;
			margin-bottom: 8px;
        }

        input[type="text"],
        input[type="date"],
        textarea,
        .datepicker {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--divider-color);
            border-radius: 4px;
            font-size: 16px;
            transition: border 0.3s;
        }

        input[type="text"]:focus,
        input[type="date"]:focus,
        textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(107, 96, 173, 0.2);
        }

        textarea {
            min-height: 100px;
            resize: vertical;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
        }

        .checkbox-group input {
            margin-right: 8px;
            margin-bottom: 8px;
        }

        .pdf-viewer-container {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 600px;
            border: 1px solid var(--divider-color);
            margin-bottom: 16px;
            background-color: #f5f5f5;
        }

        .pdf-viewer-content {
            width: 100%;
            height: 100%;
            overflow: auto;
            -webkit-overflow-scrolling: touch;
            padding: 10px;
            overflow-anchor: none;
        }

        .pdf-page-container {
            position: relative;
            margin: 0 auto 20px;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
            background: white;
            transition: width 0.2s ease, height 0.2s ease;
        }

        .pdf-canvas {
            width: 100% !important;
            height: auto !important;
            display: block;
            margin: 0 auto;
        }

        .pdf-controls {
            position: absolute;
            bottom: 10px;
            right: 10px;
            z-index: 100;
            display: flex;
            gap: 8px;
            background: rgba(255, 255, 255, 0.9);
            padding: 8px;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .pdf-control-button {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
        }

        .pdf-control-button:hover {
            background: var(--primary-dark);
        }

        @media (max-width: 768px) {
            .pdf-viewer-container {
                height: 400px;
            }
            
            .pdf-controls {
                bottom: 5px;
                right: 5px;
            }
            
            .pdf-control-button {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
        }
        

        /* Photo */
        .photo-instructions {
            background-color: #f8f9fa;
            border-left: 4px solid #4a90e2;
            padding: 10px 15px;
            margin-top: 10px;
            border-radius: 0 4px 4px 0;
            font-size: 0.9em;
        }

        .photo-instructions p {
            margin-bottom: 5px;
            font-weight: 500;
            color: #333;
        }

        .photo-instructions ul {
            padding-left: 20px;
            margin-top: 5px;
            margin-bottom: 0;
        }

        .photo-instructions li {
            margin-bottom: 3px;
            color: #666;
        }

        .photo-upload-container {
            margin-top: 15px;
        }

        .photo-drop-area,
        .video-drop-area {
            border: 2px dashed #ccc;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            background-color: #fafafa;
            position: relative;
        }

        .photo-drop-area:hover,
        .photo-drop-area.active,
        .video-drop-area:hover,
        .video-drop-area.active {
            border-color: #3f51b5;
            background-color: #f5f7ff;
        }

        .upload-placeholder .material-icons {
            font-size: 48px;
            color: #3f51b5;
            margin-bottom: 10px;
        }

        .upload-placeholder p {
            margin: 5px 0;
            color: #555;
        }

        .upload-placeholder .hint {
            font-size: 0.85em;
            color: #888;
        }

        .photo-preview {
            position: relative;
            max-width: 300px;
            margin: 0 auto;
        }

        .photo-preview img {
            max-width: 100%;
            max-height: 200px;
            border-radius: 4px;
            display: block;
            margin: 0 auto;
        }

        .clear-photo-btn {
            position: absolute;
            top: -10px;
            right: -10px;
            background: white;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            border: none;
            color: #f44336;
        }

        .photo-instructions {
            background-color: #e8f0fe;
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
        }


        .video-preview {
            position: relative;
            max-width: 300px;
            margin: 0 auto;
        }

        .video-preview video {
            max-width: 100%;
            max-height: 200px;
            border-radius: 4px;
            display: block;
            margin: 0 auto;
            background-color: #000;
        }

        .clear-video-btn {
            position: absolute;
            top: -10px;
            right: -10px;
            background: white;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            border: none;
            color: #f44336;
        }

        .instructions-header {
            font-weight: 500;
            margin-bottom: 10px;
            color: #3f51b5;
        }

        .instructions-list {
            padding-left: 25px;
            margin: 0;
        }

        .instructions-list li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            color: #555;
        }

        .instructions-list .material-icons {
            font-size: 18px;
            margin-right: 10px;
            color: #3f51b5;
        }

        .signature-container {
            border: 1px solid var(--divider-color);
            border-radius: 4px;
            margin-top: 8px;
        }

        .signature-pad {
            width: 100%;
            height: 200px;
            background-color: white;
            cursor: crosshair;
            touch-action: none;
        }

        .initials-pad {
            width: 100%;
            height: 100px;
            background-color: white;
            cursor: crosshair;
            touch-action: none;
        }

        .signature-clear {
            background-color: var(--secondary-color);
            border: none;
            padding: 8px 16px;
            margin-top: 8px;
            cursor: pointer;
            border-radius: 4px;
            font-size: 14px;
        }

        .signature-clear:hover {
            background-color: #e0e0e0;
        }

        .error {
            color: var(--error-color);
            font-size: 14px;
            margin-top: 4px;
            display: none;
        }

        .error.show {
            display: block;
        }

        .error-input {
            border-color: var(--error-color) !important;
        }

        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 24px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            display: block;
            margin: 32px auto 0;
            transition: background-color 0.3s;
        }

        .submit-btn:hover {
            background-color: var(--primary-dark);
        }

        .submit-btn:disabled {
            background-color: var(--divider-color);
            cursor: not-allowed;
        }

        /* Datepicker improvements */
        input[type="date"]::-webkit-calendar-picker-indicator {
            display: block;
            background: transparent;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            cursor: pointer;
        }

        .date-input-wrapper {
            position: relative;
        }

        .date-input-wrapper::after {
            content: "calendar_today";
            font-family: 'Material Icons';
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }