/* Container for the Cards */
#evcal_list {
    display: flex;
    flex-wrap: wrap; /* Allows cards to wrap to the next row */
    gap: 20px; /* Adds space between cards */
    justify-content: center; /* Centers the cards */
}

/* Card Style */
.event-card {
    width: 300px; /* Fixed width for cards */
    border: 1px solid #ddd; /* Light border for a subtle frame */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
    overflow: hidden; /* Keeps contents within the border-radius */
    transition: transform 0.2s; /* Smooth scaling on hover */
    background-color: #fff; /* White background */
}

.event-card:hover {
    transform: translateY(-5px); /* Slight lift effect */
}

/* Header Section */
.event-header {
    padding: 15px;
    color: #fff;
    text-align: center;
}

.event-date {
    font-size: 20px;
    font-weight: bold;
}

.event-month {
    font-size: 16px;
    text-transform: uppercase;
}

/* Body Section */
.event-body {
    padding: 15px;
    font-family: Arial, sans-serif;
}

.event-tags {
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    color: #fff;
    margin-right: 5px;
}

.zoom {
    background-color: #007bff; /* Blue */
}

.in-person {
    background-color: #28a745; /* Green */
}

.event-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.event-time-location {
    font-size: 14px;
    margin-bottom: 10px;
}

.event-time, .event-location, .event-instructor {
    display: block;
    margin-bottom: 5px;
}

/* Countdown */
.event-countdown {
    font-size: 14px;
    font-weight: bold;
    color: #ff4757; /* Red */
    text-align: center;
}

/* Footer Section */
.event-footer {
    padding: 15px;
    text-align: center;
    background-color: #f8f9fa; /* Light grey background */
}

.subscribe-btn {
    padding: 10px 20px;
    background-color: #3091d4; /* Primary button color */
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe-btn:hover {
    background-color: #2577a9; /* Darker shade on hover */
}


.pin-input-group {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between boxes */
}

.pin-box {
  width: 40px;
  height: 50px;
  font-size: 20px;
  text-align: center;
  border: 2px solid #ced4da;
  border-radius: 5px;
}
.pin-box:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}






	.ajde_evcal_calendar {
		width:100%; text-align: left; white-space:normal; position: relative;
		color:var(--evo_color_1); padding-bottom: 10px;
	}