/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            padding: 20px;
        }

        /* Search Bar Styles */
        .search-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            background: white;
            border-radius: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .search-container.expanded {
            width: 300px;
        }

        .search-wrapper {
            display: flex;
            align-items: center;
            padding: 5px;
        }

        .search-input {
            width: 0;
            border: none;
            outline: none;
            font-size: 14px;
            padding: 8px 0;
            transition: width 0.3s ease;
            background: transparent;
        }

        .search-container.expanded .search-input {
            width: 240px;
            padding: 8px 10px;
        }

        .search-button {
            background: #007bff;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

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

        .search-button svg {
            width: 18px;
            height: 18px;
            fill: white;
        }

        .clear-button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            display: none;
            color: #999;
        }

        .search-container.expanded.has-text .clear-button {
            display: block;
        }

        /* Results Counter */
        .results-counter {
            position: absolute;
            top: 100%;
            right: 0;
            background: #333;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        .results-counter.show {
            display: block;
        }

        /* Highlight Style */
        .search-highlight {
            background-color: #ffeb3b;
            padding: 2px;
            border-radius: 3px;
        }

        /* Page Content */
        .content {
            max-width: 1200px;
            margin: 80px auto 40px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .content h1 {
            color: #333;
            margin-bottom: 20px;
        }

        .content h2 {
            color: #555;
            margin: 20px 0 10px;
        }

        .content p {
            line-height: 1.6;
            color: #666;
            margin-bottom: 15px;
        }

        .content ul {
            margin-left: 20px;
            color: #666;
        }

        .content li {
            margin-bottom: 8px;
        }

        .no-results {
            text-align: center;
            color: #999;
            font-style: italic;
            display: none;
            padding: 20px;
        }

        /* Mobile Responsive */
        @media (max-width: 600px) {
            .search-container {
                top: 10px;
                right: 10px;
            }
            
            .search-container.expanded {
                width: calc(100vw - 20px);
                max-width: 300px;
            }
        }