body.page-loading {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

.splash-screen {
  display: none;
}

.page-loading .splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Inter, Helvetica, 'sans-serif';
  background-color: #f9f9f9;
  color: #5e6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.page-loading .splash-screen span {
  color: #5e6278;
  transition: none !important;
  -webkit-font-smoothing: antialiased;
}

.page-loading .splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
  height: 30px !important;
}

html[data-bs-theme='dark'] .page-loading .splash-screen {
  background-color: #151521;
  color: #ffffff;
}

.splash-screen .dark-logo {
  display: none;
}

.splash-screen .light-logo {
  display: block;
}

html[data-bs-theme='dark'] .splash-screen .light-logo {
  display: none;
}

html[data-bs-theme='dark'] .splash-screen .dark-logo {
  display: block;
}

.dark-primary-text{
  color: #0e3ae7;
}
.dark-primary-border{
  border: 1px #0e3ae7 solid;
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .laptop-responsive-style {
    height: 700px;
    overflow: auto;
  }
}
.application-card {  
  width: 29.5rem !important;
  height: 12rem !important;
  margin-left: 1.3rem !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 0;
}
.add-application-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 0;  
  height: 10rem !important;
}
.selected-application-card {
  box-shadow: 0 0 0 3px #292b33 !important; 
  z-index: 2 !important;
}
.application-card:hover {
  cursor: pointer;
  box-shadow: 0 0 0 2px #0e3ae7; 
  transform: scale(1.05); 
  z-index: 2;
}
.add-application-card:hover {
  cursor: pointer;
  box-shadow: 0 0 0 2px #0e3ae7; 
  transform: scale(1.05); 
  z-index: 2;
}
.organisation-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
}

.organisation-card {
  min-width: 200px; 
  max-width: 350px; 
  flex-grow: 1; 
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
}

.organisation-card-title {
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  word-wrap: break-word;
  white-space: normal;
}

.organisation-setting-button {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .organisation-container {
      flex-direction: column; 
      align-items: center;
  }
}


.organisation-card:hover {
  cursor: pointer;
  box-shadow: 0 0 0 2px #292b33;
  transform: scale(1.05);
  z-index: 2;
}

.organisation-card:hover .organisation-setting-button {
  display: flex !important;
}
.application-card-list {
  width: 15rem !important;
  height: 12rem !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 0;
  border-radius: 18px !important;
}
.application-card-list:hover {
  cursor: pointer;
  box-shadow: 0 0 0 2px #292b33; 
  transform: scale(1.05); 
  z-index: 2;
}
.application-card-list:hover .application-setting-button {
  display: flex !important;
}
.round-button {
  border-radius: 24px !important;
}
.user-input{
  border-radius: 50px !important;
}