
        /* Core styles for layout */
        .sidebar {
            width: 250px;
            background-color: #f5f5f5;
            position: fixed;
            height: 100%;
            overflow: auto;
            transition: all 0.3s;
            z-index: 900;
        }

        .sidebar ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        .sidebar ul li {
            padding: 0;
        }

        .sidebar ul li a {
            padding: 15px;
            display: block;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }

        .sidebar ul li a:hover, .sidebar ul li a.active {
            background-color: #e0e0e0;
            border-left: 3px solid #4CAF50;
        }

        .sidebar ul li a i {
            margin-right: 10px;
        }

        .container {
            display: flex;
        }

        .content {
            flex: 1;
            margin-left: 250px;
            padding: 20px;
            transition: all 0.3s;
        }

        @media (max-width: 768px) {
            .sidebar {
                margin-left: -250px;
            }
            
            .sidebar.active {
                margin-left: 0;
            }
            
            .content {
                margin-left: 0;
            }
            
            .content.active {
                margin-left: 250px;
            }
        }

        .navbar {
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .navbar-left {
            display: flex;
            align-items: center;
        }

        .navbar-left h1 {
            margin: 0;
            margin-left: 15px;
            font-size: 22px;
        }

        .menu-toggle {
            color: white;
            font-size: 20px;
            cursor: pointer;
        }

        .navbar-right {
            display: flex;
            align-items: center;
        }

        .user-info {
            margin-right: 15px;
        }

        .user-actions {
            display: flex;
            align-items: center;
        }

        .btn-logout, .btn-settings {
            background: transparent;
            border: 1px solid white;
            color: white;
            padding: 5px 10px;
            margin-left: 10px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-logout:hover, .btn-settings:hover {
            background-color: white;
            color: #4CAF50;
        }
        
        /* Feedback specific styles */
        .feedback-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .feedback-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .feedback-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 10px;
        }
        
        .feedback-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .zander-dedication {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
            border-left: 5px solid #4CAF50;
        }
        
        .zander-title {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .zander-title h3 {
            font-size: 1.5rem;
            margin: 0;
            margin-right: 10px;
        }
        
        .zander-info {
            color: #555;
            font-size: 1rem;
        }
        
        .zander-link {
            display: inline-block;
            margin-top: 15px;
            color: #4CAF50;
            text-decoration: none;
            font-weight: bold;
        }
        
        .zander-link:hover {
            text-decoration: underline;
        }
        
        .feedback-importance {
            background-color: #e8f5e9;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .importance-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2e7d32;
        }
        
        .importance-points {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        
        .importance-points li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            line-height: 1.5;
        }
        
        .importance-points li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            background-color: #4CAF50;
            border-radius: 50%;
        }
        
        .review-guidelines {
            margin-bottom: 30px;
        }
        
        .guidelines-header {
            background-color: #f5f5f5;
            padding: 10px 15px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .guidelines-header h3 {
            margin: 0;
            font-size: 1.1rem;
        }
        
        .guidelines-content {
            padding: 15px;
            border: 1px solid #eee;
            border-top: none;
            border-radius: 0 0 4px 4px;
            display: none;
        }
        
        .guidelines-content.active {
            display: block;
        }
        
        .guidelines-list {
            padding-left: 20px;
            margin: 0;
        }
        
        .guidelines-list li {
            margin-bottom: 8px;
        }
        
        .feedback-tabs {
            display: flex;
            border-bottom: 2px solid #eee;
            margin-bottom: 30px;
        }
        
        .feedback-tab {
            flex: 1;
            text-align: center;
            padding: 15px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }
        
        .feedback-tab.active {
            font-weight: bold;
            color: #4CAF50;
        }
        
        .feedback-tab.active:after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #4CAF50;
        }
        
        .feedback-tab i {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        
        .feedback-tab-content {
            display: none;
        }
        
        .feedback-tab-content.active {
            display: block;
        }
        
        .feedback-form {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 30px;
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 25px;
            font-size: 1.5rem;
            color: #333;
        }
        
        .rating-container {
            margin-bottom: 30px;
        }
        
        .rating-title {
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .rating-scale {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 10px 0 20px;
        }
        
        .rating-star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .rating-star:hover, .rating-star.active {
            color: #FFD700;
        }
        
        .rating-labels {
            display: flex;
            justify-content: space-between;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .rating-left {
            text-align: left;
            color: #666;
        }
        
        .rating-right {
            text-align: right;
            color: #666;
        }
        
        .rating-slider-container {
            width: 100%;
            margin: 15px 0;
        }
        
        .rating-slider {
            -webkit-appearance: none;
            width: 100%;
            height: 10px;
            border-radius: 5px;
            background: linear-gradient(to right, #f44336, #FFEB3B, #4CAF50);
            outline: none;
            opacity: 0.9;
            transition: opacity 0.2s;
        }
        
        .positive-slider {
            background: linear-gradient(to right, #4CAF50, #FFEB3B, #4CAF50);
        }
        
        .negative-slider {
            background: linear-gradient(to right, #f44336, #FFEB3B, #4CAF50);
        }
        
        .rating-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: #4CAF50;
            cursor: pointer;
            box-shadow: 0 0 0 4px rgba(0,0,0,0.1);
        }
        
        .rating-slider::-moz-range-thumb {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: #4CAF50;
            cursor: pointer;
            box-shadow: 0 0 0 4px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .form-group input, 
        .form-group select, 
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .form-col {
            flex: 1;
        }
        
        .anonymous-option {
            margin-bottom: 20px;
        }
        
        .checkbox-container {
            display: flex;
            align-items: center;
        }
        
        .checkbox-container input[type="checkbox"] {
            margin-right: 10px;
            width: auto;
        }
        
        .form-submit {
            text-align: center;
            margin-top: 30px;
        }
        
        .submit-btn {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #2e7d32;
        }
        
        .feedback-history {
            margin-top: 50px;
        }
        
        .history-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        
        .history-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .history-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 15px;
            border-left: 5px solid #4CAF50;
        }
        
        .history-card.negative {
            border-left-color: #f44336;
        }
        
        .history-date {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .history-provider {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .history-rating {
            display: flex;
            margin: 10px 0;
        }
        
        .history-rating i {
            color: #FFD700;
            margin-right: 3px;
        }
        
        .history-text {
            margin-top: 10px;
            font-size: 0.95rem;
            color: #555;
        }
        
        .history-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 15px;
        }
        
        .history-actions button {
            background-color: #f5f5f5;
            border: none;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
        }
        
        /* Floating feedback buttons for home page */
        .floating-feedback {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }
        
        .feedback-bubble {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }
        
        .feedback-bubble:hover {
            transform: scale(1.1);
        }
        
        .feedback-bubble i {
            font-size: 1.5rem;
            color: white;
        }
        
        .thumbs-up {
            background-color: #4CAF50;
        }
        
        .thumbs-down {
            background-color: #f44336;
        }
        
        .feedback-tooltip {
            position: absolute;
            right: 70px;
            background-color: #333;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .feedback-bubble:hover .feedback-tooltip {
            opacity: 1;
            visibility: visible;
        }
        
        .zander-scale-badge {
            background-color: #4CAF50;
            color: white;
            padding: 5px 10px;
            border-radius: 30px;
            font-size: 0.9rem;
            display: inline-block;
            margin-left: 10px;
        }
        
        @media (max-width: 768px) {
            .feedback-tab {
                padding: 10px 5px;
                flex-direction: column;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .history-list {
                grid-template-columns: 1fr;
            }
            
            .floating-feedback {
                bottom: 15px;
                right: 15px;
            }
	
			}
		/* Center the content in desktop view only */
		@media (min-width: 769px) {
			.content {
				margin-left: 0;
				padding: 20px;
				width: 100%;
				display: flex;
				justify-content: center;
			}
			
			.feedback-container {
				width: 100%;
				max-width: 1000px;
				margin-top: 20px;
			}
		}
			
			
