html, body {
	height: 100%;
	margin: 0;
 }
 .navbar-center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
 }
 .login-container {
	height: calc(100vh - 56px); /* 56px is default navbar height */
 }


#photoContainer {
      width: 100%;
      max-width: 250px;
      height: 250px;
      border: 2px dashed #ccc;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      background-color: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #photoContainer img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    #photoInput {
      display: none;
    }



 .member-card {
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1rem;
      border: 1px solid #dee2e6;
      border-radius: 0.5rem;
      background-color: #fff;
		box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* shadow on right and bottom */

    }
    .member-img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 10%;
      margin-bottom: 1rem;
    }




.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

[data-status="inaktiv"] .status-dot.bg-success { display: none; }
[data-status="aktiv"] .status-dot.bg-secondary { display: none; }

[data-status="inaktiv"] .member-photo {
  filter: grayscale(100%);
  opacity: 0.7;
}



