/*@tailwind base;*/
/*@tailwind components;*/
/*@tailwind utilities;*/
/* You can add global styles to this file, and also import other style files */
@layer components {
  .navigation-text {
    @apply pl-4 cursor-pointer h-8 flex items-center hover:bg-custom-hover ;
  }
}
html, body, #root {
  height: 100%;
}

@layer base {
  ::-webkit-scrollbar {
    width: 4px; /* Width of the scrollbar */
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 4px; /* Roundness of the scrollbar thumb */
  }
}

.body{
  width: calc(100% - 260px);
  background-color: #fff;
}
.search{
  width:300px;
  height:32px;
}

input[type='checkbox'].intermediate{
  background-image: url("data:image/svg+xml,%3Csvg viewBox=\'0 0 16 16\' fill=\'white\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Crect width=\'8\' height=\'2\' x=\'4\' y=\'7\' rx=\'1\'/%3E%3C/svg%3E");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.skeleton {
  animation: skeletonLoading 1s linear infinite alternate;
}

@keyframes skeletonLoading {
  0% {
    background-color: rgba(0, 0, 0, 0.01);
  }
  25% {
    background-color: rgba(0, 0, 0, 0.03);
  }
  50% {
    background-color: rgba(0, 0, 0, 0.05);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.08);
  }
}


/* styles.css */
.container {
  min-height: 100vh;
  min-width: 100%;
  color: white;
  background-color: rgb(26, 24, 24);
}

.content {
  padding: 50px 58px 30px 58px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content-inner {
  display: flex;
  align-items: center;
}

.content-left,
.content-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container {
  width: 700px;
  height: 500px;
}

.image-container img {
  width: 100%;
  height: 100%;
}