/* custom_css.css */
html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden; 
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.koco_gradient{
  background-color: white;
  color: transparent;
  background: linear-gradient(to right, #eb8c34 0%, #5e03a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.koco{
  color: #800080;
}

.kocowa-button {
  padding: 7px 17px;
  font-size: 15px;
  border: 2px solid #800080;
  color: #800080;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.kocowa-button:hover {
  color: white;
  background: linear-gradient(to right, #9c27b0, #673ab7);
  border-color: #673ab7;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh; /* Full viewport height */
}

.loading-spinner img {
  width: 120px; /* Adjust size as needed */
  height: 120px;
}

.rotate-180 {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.custom-tooltip {
  --bs-tooltip-bg: #4e034f;
  --bs-tooltip-color: var(--bs-white);
}

#myChart {
  max-width: 1000px;
  max-height: 500px;
  width: 100%;
  height: auto;
}

#myDonut {
  max-width: 900px;
  max-height: 500px;
  width: 100%;
  height: auto;
}