/*
Theme Name: GeneratePress Child
Theme URI: https://www.ns-tickets.nl/generatepress-child
Author: John Bouwman
Author URI: https://www.ns-tickets.nl
Description: GeneratePress Child Theme
Template: generatepress
Version: 1.0.1
Requires at least: 4.5.0
Tested up to: 5.5
Requires PHP: 5.4.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child
Tags: two-columns, three-columns, one-column, right-sidebar, left-sidebar, footer-widgets, blog, e-commerce, flexible-header, full-width-template, buddypress, custom-header, custom-background, custom-menu, custom-colors, sticky-post, threaded-comments, translation-ready, rtl-language-support, featured-images, theme-options
*/

/* Remove RECAPTCHA Badge */
.grecaptcha-badge {
	display: none !important;
}

/* Forms */
#mfcf7_zl_add_file {
	background-color: #fafafa;
	color: #666666;
	border-color: #cccccc;
}

/** 
 * CHATBOT NADIA *
 **/
#chat-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #007bff;
	color: white;
	border: none;
	padding: 0px;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	z-index: 1000;
	display: flex; /* Use flex for better alignment */
	align-items: center;
	justify-content: center;
	gap: 10px; /* Space between icon and text */
	width: 50px; /* Initial size to show only the image */
	height: 50px;
	overflow: hidden;
	transition: width 0.3s ease, padding 0.3s ease;
}
#chat-button img {
	width: 36px;
	height: 36px;
	border-radius: 50%; / Optional: circular icon /
}
#chat-button span {
	display: none; /* Hide text initially */
	white-space: nowrap;
	transition: opacity 0.3s ease;
}
#chat-button:hover:not(.open) {
	width: 200px; /* Expanded size to show text */
	padding: 10px 20px; /* Adjust padding for expanded button */
}
#chat-button:hover:not(.open) span {
	display: block; /* Show text on hover */
}
#chat-iframe-container {
	display: none; /* hidden initially */
	position: fixed;
	bottom: 80px;
	right: 20px;
	width: 450px;
	height: 600px;
	border: 1px solid #ccc;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.2);
	overflow: hidden;
	z-index: 99999;
}
@media screen and (max-width: 600px) {
	#chat-iframe-container {
		width: 90%;
		height: 80%;
	}
}
#chat-iframe-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}