/* event-details.css */

.event-details-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
    background-color: #fff;
}

.event-details-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-right: 1px solid #dee2e6;
}

.card-body {
    padding: 2rem;
    color: #333;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

a.btn {
    transition: all 0.3s ease;
}

a.btn-outline-info:hover {
    background-color: #0dcaf0;
    color: white;
}

a.btn-secondary:hover {
    background-color: #5c636a;
    border-color: #5c636a;
    color: white;
}

a[target="_blank"] {
    color: #0d6efd;
    text-decoration: underline;
}

a[target="_blank"]:hover {
    color: #0a58ca;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0; /
}
