
		 /* Search Box Styles */
        .global-search {
            max-width: 600px;
            margin: 20px auto;
            display: flex;
            align-items: center;
            background-color: #f8f9fa;
            border-radius: 25px;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .global-search .form-group {
            flex: 1;
            margin: 0;
            display: flex;
        }

        .global-search input[type="text"] {
            border: none;
            background: transparent;
            padding: 12px 20px;
            font-size: 16px;
            outline: none;
            flex: 1;
        }

        .global-search input[type="text"]::placeholder {
            color: #6c757d;
        }

        .global-search .input-group-btn {
            white-space: nowrap;
            background-color: #007bff;
            border-radius: 0 25px 25px 0;
        }

        .global-search button {
            background-color: #007bff;
            border: none;
            color: white;
            padding: 12px 20px;
            border-radius: 0;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            height: 100%;
        }

        .global-search button:hover {
            background-color: #0056b3;
        }

        @media (max-width: 768px) {
            .global-search {
                flex-direction: column;
                border-radius: 15px;
            }
            
            .global-search .form-group {
                flex-direction: column;
                width: 100%;
            }
            
            .global-search input[type="text"] {
                border-radius: 15px 15px 0 0;
                width: 100%;
            }
            
            .global-search .input-group-btn {
                border-radius: 0 0 15px 15px;
                width: 100%;
            }
            
            .global-search button {
                width: 100%;
                border-radius: 0;
            }
        }
