/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain: Fibrotarget
*/

.ft-events-list {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 40px;

	.ft-event-item {

		&>.fusion-layout-column {
			margin-bottom: 0;
			height: 100%;

			&>.fusion-column-wrapper {
				margin: 0;

				.fusion-builder-row:last-child {
					flex-grow: 1;

					&>.fusion-layout-column {
						height: 100%;
					}
				}
			}
		}
	}

	.ft-no-events {
		text-align: center;
		font-size: 18px;
		padding: 40px 0;
	}
}

.events-pagination {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	gap: 40px;

	a {
		display: inline-block;
		padding: 8px 12px;
		margin: 0 5px;
		border: 1px solid #ccc;
		border-radius: 4px;
		text-decoration: none;
		color: #333;

		&.active {
			background-color: #0073aa;
			color: #fff;
			border-color: #0073aa;
		}
	}
}