/*** Curved Borders and Shadows ***/

.card-shadow .col-sm-12 img {
  border-radius: 15px;
}
	
.col-sm-6 .card-shadow, .MembersHome .sidebar-zone {
  box-shadow: 0 0 20px rgba(0,0,0,0.16);
  border-radius: 15px;
}

.card-shadow img {
  border-radius: 15px 15px 0 0;
}

/* Default styling for desktop */
.Shadowpanel {
  border: 1px solid #ffffff; /* Border color and width */
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 0 20px rgba(0,0,0,0.16); /* Box shadow with offset and color */
  padding: 15px; /* Padding before and after the panel */
  margin: 10px 0; /* Spacing before and after the panel */
}

/* Styling for h2 on all devices */
.Shadowpanel h2 {
  color: #1F7587; /* Change h2 text color to #1F7587 */
}

/* Media query to remove most of the styling on screens with a maximum width of 768px (adjust the value as needed for your breakpoint) */
@media (max-width: 768px) {
  .Shadowpanel {
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
}
