@tailwind base;
@tailwind components;
@tailwind utilities;
.apexcharts-canvas .apexcharts-datalabels-group .apexcharts-text.apexcharts-datalabel-label {
  fill: #6b7280!important;
  font-size: 1rem;
  font-weight: 300;
}

.apexcharts-datalabels-group .apexcharts-text.apexcharts-datalabel-value {
  fill: #111827!important;
  font-size: 1.875rem;
  font-weight: 700;
}

svg.pie-chart {
  --radius: 20;
  --circumference: calc( var( --radius ) * 2 * 3.1415 );

  transform: rotate(-90deg);
  border-radius: 50%;

  stroke-width: calc( var( --radius ) * 2 );
  stroke-dasharray: calc( var(--circumference) * var(--fill-percent)/100 ) var(--circumference);
  transition: stroke-dasharray 700ms ease;
}

#area-time-by-months .apexcharts-tooltip-text-y-label {
  display: none;
}
.neomorph-spinner {
  position: relative;
  width: 8px;
  height: 8px;
  display: flex;
  align-items: center;
  border-radius: 50%;
}

.neomorph-spinner > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: spin_5113 1s ease infinite;
}

.neomorph-spinner > div:nth-child(1) {
  transform: rotate(0deg);
}

.neomorph-spinner > div:nth-child(2) {
  transform: rotate(90deg);
}

.neomorph-spinner > div:nth-child(3) {
  transform: rotate(180deg);
}

.neomorph-spinner > div:nth-child(4) {
  transform: rotate(270deg);
}

@keyframes spin_5113 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.dot-pulse-spinner {
  --uib-size: 20px;
  --uib-color: black;
  --uib-speed: 1.3s;
  --uib-dot-size: calc(var(--uib-size) * 0.24);
  position: relative;
  align-items: center;
  justify-content: space-between;
  height: var(--uib-dot-size);
  width: var(--uib-size);
}

.dot-pulse-spinner .dot,
.dot-pulse-spinner::before,
.dot-pulse-spinner::after {
  content: '';
  display: block;
  height: var(--uib-dot-size);
  width: var(--uib-dot-size);
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
  transition: background-color 0.3s ease;
}

.dot-pulse-spinner::before {
  animation: pulse var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.375)
    infinite;
}

.dot-pulse-spinner .dot {
  animation: pulse var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.25)
    infinite both;
}

.dot-pulse-spinner::after {
  animation: pulse var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.125)
    infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}
.pagy.nav {
  display: inline-flex;
  position: relative;
  z-index: 0;
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pagy.nav a {
  background-color: #ffffff;
  color: #6b7280; /* text-gray-500 */
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #d1d5db;
  text-decoration: none;
  cursor: pointer;
  margin-left: -1px; /* Removing the gap between elements */
}

.pagy.nav a:not(.current):hover {
  background-color: #f9fafb; /* hover:bg-gray-50 */
}

.pagy.nav [aria-disabled="true"]:not(.current) {
  background-color: #f1f5f9; /* bg-slate-100 */
  color: #6b7280; /* text-gray-500 */
  cursor: not-allowed;
}

.pagy.nav .current {
  z-index: 10;
  border-color: #6366f1; /* border-indigo-500 */
  background-color: #eef2ff; /* bg-indigo-50 */
  color: #4f46e5; /* text-indigo-600 */
}

.pagy.nav a:first-child {
  border-radius: 0.375rem 0 0 0.375rem; /* rounded-l-md */
  margin-left: 0; /* Removing margin-left for first link */
}

.pagy.nav a:last-child {
  border-radius: 0 0.375rem 0.375rem 0; /* rounded-r-md */
}
:root {
  --stripe-size: 15px;
  --color1: #9333ea;
  --color2: #d8b4fe;
  --duration: 2s;
}

.stripe {
  width: 100%;
  height: 100%;
}
  
.stripe::before {
  content: '';
  position: absolute;
  top: -1;
  left: 0;
  width: calc(100% + var(--stripe-size));
  height: 7px;
  background: repeating-linear-gradient(
    45deg,
    var(--color2) 25%,
    var(--color2) 50%,
    var(--color1) 50%,
    var(--color1) 75%
  );
  background-size: var(--stripe-size) var(--stripe-size);
  animation: stripeTransform var(--duration) linear infinite;
}
  
.stripe::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(#1b2735, 0) 0%, #090a0f 100%);
}


@keyframes stripeTransform {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(var(--stripe-size) * -1));
  }
}

@keyframes stripeBackgroundPosition {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: calc(var(--stripe-size) * -1) 0;
  }
}

#today-timeline [data-timeline-target="currentTimeLine"]::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
  transform: translateX(-50%);
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
