body.background-image {
    background: url("../img/Background.jpeg");
    background-size: cover;
    background-color: black;
    background-position: center center;
    background-attachment: fixed;
  }
  
  .backdrop {
    background: rgba(255, 255, 255, 0.1); /* Adjusted opacity */
    backdrop-filter: blur(10px);
    color: rgb(255, 242, 220);
    border-radius: 4em;
  }
  
  .button-primary {
    background-color: darkred;
    color: rgb(255, 242, 220);;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
  }
  
  .button-primary:hover {
    background-color: #3182ce;
    transform: scale(1.05);
  }
  
  .drop-shadow-lg {
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: rgb(255, 242, 220);
  }
 
  .grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
  }
  
  @media (min-width: 768px) {
    .grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .container {
    flex: 1; /* This pushes the footer to the bottom */
}

.footer {
    background-color: #333;
    color: rgb(255, 242, 220);
    text-align: center;
}
.sortable:hover {
  cursor: pointer;
  text-decoration: underline;
}

th, td {
  border-collapse: collapse;
  border-style: dotted;
}

table {
  background: rgba(255, 255, 255, 0.1); /* Adjusted opacity */
  backdrop-filter: blur(10px);
  color: rgb(255, 242, 220);
  border-radius: 10px;
}

.sortable:hover {
  cursor: pointer;
  text-decoration: underline;
}

.member-link {
  transition: color 0.3s ease, transform 0.3s ease;
}

.member-link:hover {
  cursor: pointer;
  text-decoration: underline;
}
