		.search-cont {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .demo-content {
            text-align: center;
            color: white;
            margin-bottom: 40px;
        }

        /*#search {
            padding: 15px 30px;
            font-size: 18px;
            background: white;
            color: #333;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        #search:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        #search i {
            margin-right: 10px;
        }*/

        /* Стили модального окна */
        .search-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .search-modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease-out;
        }

        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        .search-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .search-modal-header h2 {
            color: #333;
            font-size: 24px;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 28px;
            color: #777;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-btn:hover {
            color: #333;
        }

        .search-input-2-container {
            margin-bottom: 25px;
			width: 100%;
			position: relative;
        }

        .search-input-2-container label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 600;
        }

        .search-input-2 {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
			box-sizing: border-box;
        }

        .search-input-2:focus {
            border-color: #667eea;
            outline: none;
        }

        .search-hint {
            font-size: 14px;
            color: #777;
            margin-top: 8px;
        }

        .search-modal-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            margin-top: 30px;
        }

        .search-btn, .cancel-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-btn {
            /*background: linear-gradient(to right, #667eea, #764ba2);*/
			background: linear-gradient(135deg, rgb(76, 175, 80), rgb(69, 160, 73));
            color: white;
        }

        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .cancel-btn {
            /*background-color: #f5f5f5;
            color: #333;*/
			background: #f5f5f5;
			color: #666;
			border: 2px solid #e0e0e0;
        }

        .cancel-btn:hover {
            background-color: #e0e0e0;
        }

        .results-container {
            margin-top: 25px;
            max-height: 300px;
            overflow-y: auto;
            display: none;
        }

        .results-header {
            color: #555;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }

        .result-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
            text-align: left;
        }

        .result-item:last-child {
            border-bottom: none;
        }

        .result-title {
            color: #333;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .result-content {
            color: #666;
            font-size: 14px;
        }

        .search-loading {
            display: none;
            text-align: center;
            padding: 20px;
            color: #667eea;
        }

        .search-loading i {
            font-size: 24px;
            margin-bottom: 10px;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .search-modal-content {
                padding: 20px;
                width: 95%;
            }		
            
            .search-modal-buttons {
                flex-direction: column;
            }
            
            .search-btn, .cancel-btn {
                width: 100%;
            }
        }