body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table th {
    background-color: #f8f9fa;
}

.alert {
    border-radius: 8px;
}

.btn {
    border-radius: 8px;
    padding: 8px 16px;
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer {
    border-radius: 0 0 10px 10px !important;
}

/* Added object-fit-contain class */
.object-fit-contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* Additional styles for the image containers */
.ratio-16x9 {
  background-color: #f8f9fa; /* Light background for the container */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Optional: Add some padding around the contained images */
.ratio-16x9 img {
  padding: 10px;
  max-width: 100%;
  max-height: 100%;
}

/* Soft Neumorphic Theme */
.neo-card {
  background: #f5f7fb;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 12px 12px 28px rgba(0,0,0,0.06), -12px -12px 28px rgba(255,255,255,0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.neo-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 22px rgba(0,0,0,0.06), -8px -8px 22px rgba(255,255,255,0.9);
}

.neo-btn {
  border-radius: 14px;
  box-shadow: inset 2px 2px 4px rgba(0,0,0,0.05), inset -2px -2px 4px rgba(255,255,255,0.8);
}

.neo-badge {
  background: #eef3fb;
  color: #0d6efd;
  border-radius: 999px;
  box-shadow: inset 1px 1px 2px rgba(0,0,0,0.05), inset -1px -1px 2px rgba(255,255,255,0.8);
}

.feature-icon {
  background: #eef3fb !important;
  box-shadow: inset 6px 6px 12px rgba(0,0,0,0.05), inset -6px -6px 12px rgba(255,255,255,0.9);
}
