body {
  background-color: #FFFFFF !important;
}

#root {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
}

.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Sayfanın en az ekran boyutunda olmasını sağlar */
}

.cursorPointer {
  cursor: pointer;
}

.noSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.transition {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}