/* Venue Restroom Setup - Frontend Styles */

.vrs-restroom-info {
	margin: 30px 0;
	padding: 20px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.vrs-restroom-info h3 {
	margin-top: 0;
	margin-bottom: 15px;
	color: #333;
	font-size: 1.3em;
}

.vrs-restroom-setup {
	margin-bottom: 15px;
}

.vrs-restroom-setup strong {
	display: block;
	margin-bottom: 5px;
	color: #555;
}

.vrs-setup-type {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	background: #4a90e2;
	color: #fff;
	border-radius: 3px;
	font-weight: 500;
	gap: 5px;
}

.vrs-setup-type i,
.vrs-setup-type img,
.vrs-setup-type svg {
	margin-right: 5px;
}

.vrs-setup-type img,
.vrs-setup-type svg {
	max-width: 18px;
	max-height: 18px;
	vertical-align: middle;
	display: inline-block;
}

/* SVG icon styling for setup type */
.vrs-setup-type svg {
	fill: currentColor;
	color: #fff;
	width: 18px;
	height: 18px;
}

.vrs-restroom-details {
	margin-bottom: 15px;
}

.vrs-restroom-details strong {
	display: block;
	margin-bottom: 5px;
	color: #555;
}

.vrs-restroom-details p {
	margin: 5px 0 0 0;
	color: #666;
	line-height: 1.6;
}

.vrs-report-link {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e0e0e0;
}

.vrs-report-link a {
	color: #4a90e2;
	text-decoration: none;
	font-size: 0.9em;
}

.vrs-report-link a:hover {
	text-decoration: underline;
}

/* Reporting Form */
.vrs-report-form-container {
	margin-top: 20px;
	padding: 20px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.vrs-report-form-container h4 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #333;
}

.vrs-report-description {
	margin-bottom: 20px;
	color: #666;
	font-size: 0.95em;
	line-height: 1.5;
}

.vrs-report-form p {
	margin-bottom: 15px;
}

.vrs-report-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	color: #333;
}

.vrs-report-form select,
.vrs-report-form textarea,
.vrs-report-form input[type="text"],
.vrs-report-form input[type="email"] {
	width: 100%;
	max-width: 500px;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: 14px;
	font-family: inherit;
}

.vrs-report-form textarea {
	resize: vertical;
	min-height: 80px;
}

.vrs-submit-report {
	background: #4a90e2;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.vrs-submit-report:hover {
	background: #357abd;
}

.vrs-submit-report:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.vrs-report-message {
	margin-top: 15px;
	padding: 10px;
	border-radius: 3px;
	display: none;
}

.vrs-report-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	display: block;
}

.vrs-report-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	display: block;
}

/* Venues Listing Page */
.vrs-venues-listing {
	margin: 30px 0;
}

.vrs-map-section {
	margin-bottom: 30px;
}

.vrs-map-section h3 {
	margin-bottom: 15px;
	color: #333;
	font-size: 1.2em;
}

.vrs-submit-venue-section {
	margin: 40px 0 20px 0;
	padding: 25px;
	background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
	border-radius: 12px;
	border: 2px solid #e0e0e0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.vrs-submit-venue-section h3 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #333;
	font-size: 1.4em;
	font-weight: 600;
}

.vrs-submit-venue-section p {
	margin-bottom: 20px;
	color: #666;
	font-size: 1em;
	line-height: 1.6;
}

.vrs-submit-venue-button {
	margin-top: 10px;
	padding: 14px 32px;
	background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.vrs-submit-venue-button:hover {
	background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 100%);
	box-shadow: 0 6px 16px rgba(156, 39, 176, 0.4);
	transform: translateY(-2px);
}

.vrs-submit-venue-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
}

.vrs-listing-description {
	margin-bottom: 20px;
	color: #666;
	font-size: 1.1em;
	line-height: 1.6;
}

.vrs-filter-section {
	margin-bottom: 30px;
	padding: 20px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.vrs-filter-label {
	display: block;
	margin-bottom: 10px;
	color: #333;
	font-size: 1em;
}

.vrs-restroom-filter {
	width: 100%;
	max-width: 400px;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.3s;
}

.vrs-restroom-filter:hover {
	border-color: #4a90e2;
}

.vrs-restroom-filter:focus {
	outline: none;
	border-color: #4a90e2;
	box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.vrs-venues-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.vrs-venue-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px;
	transition: box-shadow 0.3s;
}

.vrs-venue-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vrs-venue-card.has-info,
.vrs-venue-card.setup-separate {
	border-left: 4px solid #e91e63;
}

.vrs-venue-card.setup-all-gender {
	border-left: 4px solid #9c27b0;
}

.vrs-venue-card.setup-mixed {
	border-left: 4px solid #4a90e2;
}

.vrs-venue-card.no-info {
	border-left: 4px solid #ff9800;
}

.vrs-venue-name {
	margin: 0 0 8px 0;
	color: #333;
	font-size: 1.3em;
}

.vrs-venue-address {
	margin: 0 0 15px 0;
	color: #666;
	font-size: 0.9em;
	line-height: 1.4;
}

.vrs-venue-setup {
	margin-bottom: 15px;
}

.vrs-setup-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	background: #4a90e2;
	color: #fff;
	border-radius: 4px;
	font-size: 0.9em;
	font-weight: 500;
	gap: 5px;
}

.vrs-setup-badge i,
.vrs-setup-badge img,
.vrs-setup-badge svg {
	margin-right: 5px;
}

.vrs-setup-badge img,
.vrs-setup-badge svg {
	max-width: 18px;
	max-height: 18px;
	vertical-align: middle;
	display: inline-block;
}

/* SVG icon styling - make them white to match badge text */
/* SVG icon styling - make them white to match badge text */
.vrs-setup-badge svg,
.vrs-icon-svg {
	fill: #fff !important;
	color: #fff !important;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	display: inline-block;
}

.vrs-setup-badge svg *,
.vrs-icon-svg * {
	fill: currentColor !important;
	color: inherit !important;
	stroke: none !important;
}

.vrs-badge-separate_gender svg,
.vrs-badge-separate_gender .vrs-icon-svg {
	fill: #fff !important;
	color: #fff !important;
}

.vrs-badge-separate_gender svg *,
.vrs-badge-separate_gender .vrs-icon-svg * {
	fill: currentColor !important;
}

.vrs-badge-all_gender svg,
.vrs-badge-all_gender .vrs-icon-svg {
	fill: #fff !important;
	color: #fff !important;
}

.vrs-badge-all_gender svg *,
.vrs-badge-all_gender .vrs-icon-svg * {
	fill: currentColor !important;
}

.vrs-badge-mixed svg,
.vrs-badge-mixed .vrs-icon-svg {
	fill: #fff !important;
	color: #fff !important;
}

.vrs-badge-mixed svg *,
.vrs-badge-mixed .vrs-icon-svg * {
	fill: currentColor !important;
}

.vrs-setup-badge.no-info svg,
.vrs-setup-badge.no-info .vrs-icon-svg {
	fill: #fff !important;
	color: #fff !important;
}

.vrs-setup-badge.no-info svg *,
.vrs-setup-badge.no-info .vrs-icon-svg * {
	fill: currentColor !important;
}

/* For SVG images loaded as <img> tags, use CSS filter to make them white */
.vrs-svg-img {
	filter: brightness(0) invert(1) !important;
}

.vrs-badge-separate_gender {
	background: #e91e63;
	color: #fff;
}

.vrs-badge-all_gender {
	background: #9c27b0;
	color: #fff;
}

.vrs-badge-mixed {
	background: #4a90e2;
	color: #fff;
}

.vrs-setup-badge.no-info {
	background: #ff9800;
	color: #fff;
}

.vrs-venue-details {
	margin: 15px 0;
	padding: 12px 15px;
	background: #f8f9fa;
	border-left: 3px solid #e0e0e0;
	border-radius: 3px;
	color: #555;
	font-size: 0.9em;
	line-height: 1.6;
}

.vrs-venue-details p {
	margin: 0;
	color: #555;
	font-style: italic;
}

.vrs-venue-details:empty {
	display: none;
}

.vrs-venue-actions {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e0e0e0;
}

.vrs-report-button {
	background: #4a90e2;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	width: 100%;
}

.vrs-report-button:hover {
	background: #357abd;
}

.vrs-close-venue-button {
	background: #dc3545;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	width: 100%;
	margin-top: 10px;
}

.vrs-close-venue-button:hover {
	background: #c82333;
}

.vrs-close-venue-button:disabled {
	background: #6c757d;
	cursor: not-allowed;
	opacity: 0.6;
}

/* Modal Styles */
.vrs-modal {
	display: none;
	position: fixed;
	z-index: 999999 !important;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}

.vrs-modal-content {
	background-color: #fefefe;
	margin: 5% auto;
	padding: 30px;
	border: 1px solid #888;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	position: relative;
	z-index: 1000000 !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vrs-modal-close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
	line-height: 1;
}

.vrs-modal-close:hover,
.vrs-modal-close:focus {
	color: #000;
	text-decoration: none;
}

.vrs-loading {
	text-align: center;
	padding: 20px;
	color: #666;
}

.vrs-restroom-info-inline {
	margin: 20px 0;
	padding: 15px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.vrs-report-form .required {
	color: #d63638;
	font-weight: bold;
}

.vrs-admin-note {
	display: block;
	margin-top: 5px;
	color: #666;
	font-size: 0.85em;
	font-style: italic;
}

/* EventOn Event Card Restroom Info */
.evo_event_restroom_info {
	margin-top: 10px;
	padding-top: 10px;
}

.evo_location_restroom {
	margin: 0;
	font-size: 0.9em;
}

.evo_location_restroom strong {
	display: inline-block;
	margin-right: 5px;
}

.vrs-event-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 3px;
	font-size: 0.85em;
	font-weight: 500;
	color: #fff;
}

.vrs-event-badge.vrs-badge-separate_gender {
	background: #e91e63;
}

.vrs-event-badge.vrs-badge-all_gender {
	background: #9c27b0;
}

.vrs-event-badge.vrs-badge-mixed {
	background: #4a90e2;
}

.vrs-event-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.vrs-event-badge i,
.vrs-event-badge img,
.vrs-event-badge svg {
	margin-right: 5px;
}

.vrs-event-badge img,
.vrs-event-badge svg {
	max-width: 16px;
	max-height: 16px;
	vertical-align: middle;
	display: inline-block;
}

/* SVG icon styling for event badges */
.vrs-event-badge svg {
	fill: currentColor;
	color: #fff;
	width: 16px;
	height: 16px;
}

/* Filter Message */
.vrs-filter-message {
	margin-top: 15px;
	padding: 10px 15px;
	background: #e3f2fd;
	border-left: 4px solid #4a90e2;
	border-radius: 4px;
	color: #1976d2;
	font-size: 0.95em;
	display: none;
}

.vrs-venue-card {
	transition: opacity 0.3s, transform 0.3s;
}

