        /* Floating Feedback Button */
        .feedback-button {
        	background: #007bff;
        	color: white;
        	border: none;
        	border-radius: 50px;
        	padding: 12px 20px;
        	font-size: 14px;
        	font-weight: 600;
        	cursor: pointer;
        	box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
        	z-index: 1000;
        	display: flex;
        	align-items: center;
        	gap: 8px;
        }

        .feedback-button:hover {
        	background: #0056b3;
        }

        /* Modal Overlay */
        .modal-overlay {
        	position: fixed;
        	top: 0;
        	left: 0;
        	width: 100%;
        	height: 100%;
        	background: rgba(0, 0, 0, 0.5);
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	z-index: 2000;
        }

        /* Modal Content */
        .modal-content {
        	background: white;
        	border-radius: 8px;
        	padding: 24px;
        	width: 90%;
        	max-width: 500px;
        	max-height: 80vh;
        	overflow-y: auto;
        	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .modal-header {
        	display: flex;
        	justify-content: space-between;
        	align-items: center;
        	margin-bottom: 20px;
        	padding-bottom: 16px;
        	border-bottom: 1px solid #eee;
        }

        .modal-title {
        	font-size: 20px;
        	font-weight: 600;
        	color: #333;
        	margin: 0;
        }

        .close-button {
        	background: none;
        	border: none;
        	font-size: 24px;
        	color: #666;
        	cursor: pointer;
        	padding: 4px;
        	border-radius: 4px;
        	transition: background-color 0.2s;
        }

        .close-button:hover {
        	background: #f0f0f0;
        }

        /* Form Styles */
        .form-group {
        	margin-bottom: 20px;
        }

        .form-label {
        	display: block;
        	margin-bottom: 8px;
        	font-weight: 500;
        	color: #333;
        }

        .form-input,
        .form-textarea {
        	width: 100%;
        	padding: 12px;
        	border: 1px solid #ddd;
        	border-radius: 4px;
        	font-size: 14px;
        	font-family: inherit;
        	box-sizing: border-box;
        }

        .form-input:focus,
        .form-textarea:focus {
        	outline: none;
        	border-color: #007bff;
        }

        .form-textarea {
        	resize: vertical;
        	min-height: 120px;
        }

        .form-description {
        	font-size: 13px;
        	color: #666;
        	margin-top: 4px;
        	line-height: 1.4;
        }

        .feedback-type-selector {
        	display: flex;
        	gap: 8px;
        	margin-bottom: 20px;
        }

        .type-button {
        	padding: 8px 16px;
        	border: 1px solid #ddd;
        	background: white;
        	border-radius: 4px;
        	font-size: 14px;
        	cursor: pointer;
        }

        .type-button.active {
        	background: #007bff;
        	color: white;
        	border-color: #007bff;
        }

        /* Action Buttons */
        .modal-actions {
        	display: flex;
        	gap: 12px;
        	justify-content: flex-end;
        	margin-top: 24px;
        	padding-top: 20px;
        	border-top: 1px solid #eee;
        }

        .btn {
        	padding: 10px 20px;
        	border: none;
        	border-radius: 4px;
        	font-size: 14px;
        	font-weight: 500;
        	cursor: pointer;
        }

        .btn-cancel {
        	background: #f8f9fa;
        	color: #6c757d;
        }

        .btn-submit {
        	background: #007bff;
        	color: white;
        }

        .btn-submit:disabled {
        	background: #ccc;
        	cursor: not-allowed;
        }

        /* Success Message */
        .success-message {
        	text-align: center;
        	padding: 40px 20px;
        }

        .success-icon {
        	font-size: 48px;
        	color: #28a745;
        	margin-bottom: 16px;
        }

        .success-title {
        	font-size: 18px;
        	font-weight: 600;
        	color: #333;
        	margin-bottom: 8px;
        }

        .success-text {
        	color: #666;
        	margin-bottom: 24px;
        	line-height: 1.5;
        }

        .next-steps {
        	background: #f8f9fa;
        	border-radius: 6px;
        	padding: 16px;
        	margin: 16px 0 24px 0;
        	border-left: 4px solid #007bff;
        }

        .next-steps h4 {
        	margin: 0 0 8px 0;
        	font-size: 14px;
        	font-weight: 600;
        	color: #333;
        }

        .next-steps p {
        	margin: 0;
        	font-size: 13px;
        	color: #666;
        	line-height: 1.4;
        }
