/* body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
  margin: 0;
  font-family: Arial, sans-serif;
} */

/* .card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: white;
    font-family: Arial, sans-serif;
}

.image-card {
    position: relative;
    width: 100%;
    height: 200px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover .overlay {
    opacity: 1;
}

.view-details {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.card-title {
    width: 100%;
    padding-top: 15px;
    background-color: white;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.week {
    margin-top: 4px;
    padding: 5px 0;
    font-size: 14px;
    color: #777;
    text-align: center;
} */
