
.mcp-event-image {
  margin-bottom: 20px;
}

.mcp-event-thumbnail {
  width: 100%;
  border-radius: 8px;
}

.mcp-event-title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.mcp-event-meta {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.mcp-event-meta li {
  margin-bottom: 5px;
}

.mcp-toggle-btn {
  padding: 10px 20px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.mcp-event-form {
  display: none;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.mcp-event-form input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.mcp-submit-btn {
  padding: 10px 20px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.mcp-success {
  color: green;
  font-weight: 500;
}

.mcp-error {
  color: red;
  font-weight: 500;
}

.mcp-event-register-container {
    max-width: 600px;
    margin: 2% 0;
}

.mcp-event-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
}

.mcp-event-item {
  flex: 1 1 calc(33.333% - 20px);
  max-width: 350px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mcp-event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mcp-event-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.mcp-event-image {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.mcp-event-item h4 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
}

.mcp-event-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

/* ✅ Responsive Breakpoints */
@media (max-width: 1024px) {
  .mcp-event-item {
    flex: 1 1 calc(45% - 20px);
  }
}

@media (max-width: 768px) {
  .mcp-event-item {
    flex: 1 1 calc(100% - 20px);
  }
}

