/* Band Show Container */
.band-show-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* Align the content to the left */
  background-color: white;
  padding: 20px;
  margin: 20px auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  position: relative;
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
}

/* Edit Button */
.edit-band-link {
  color: #007bff;
  font-weight: bold;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #f0f0f0;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9em;
}

.edit-band-link:hover {
  background-color: #007bff;
  color: white;
}

/* Band Image */
.band-image {
  width: 30%;  /* Set to 30% for flexibility */
  height: auto;
  aspect-ratio: 1; /* Ensures square aspect ratio */
  border-radius: 8px;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0; /* Prevent image from shrinking too small */
  position: relative;
}

.band-image .profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-image .no-image {
  width: 100%;
  height: 100%;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
}

/* Band Info */
.band-info {
  flex: 1;
}

.band-name {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.location {
  font-size: 10px; /* Slightly smaller text size */
  color: grey;
}

.band-info p {
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #333;
}

.band-info p strong {
  font-weight: bold;
}

.band-info a {
  color: #007bff;
  text-decoration: none;
}

.band-info a:hover {
  text-decoration: underline;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  .band-show-container {
    flex-wrap: wrap;  /* Allow items to wrap */
    justify-content: center;  /* Center align the content */
  }

  .band-image {
    width: 40%;  /* Slightly reduce the image size */
    margin-right: 0;
    margin-bottom: 20px; /* Add space below the image */
  }

  .band-info {
    width: 100%;  /* Make the info section take the full width */
    text-align: center; /* Center the text */
  }
}

@media (max-width: 480px) {
  .band-image {
    width: 50%;  /* Reduce image size even further on very small screens */
  }

  .band-name {
    font-size: 1.5em; /* Adjust font size for small screens */
  }

  .band-info p {
    font-size: 1em;  /* Adjust paragraph font size for small screens */
  }
}

.band-actions {
  text-align: center;
  margin-top: 20px; /* Add spacing above the buttons */
}

.band-actions .btn {
  margin: 5px; /* Add spacing between buttons */
}

