@import url("https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap");

/**/

body {
  font-family: "Arial", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Container Styling */
.container {
  margin: 20px auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-family: "Inter", sans-serif;
}

.animate {
  font-family: "Inter", sans-serif;

  font: 700 4em/1 "Oswald", sans-serif;
  letter-spacing: 0;
  padding: 0.25em 0 0.325em;
  display: block;
  margin: 0 auto;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);

  /* Clip Background Image */

  background: url(https://masstree.in/assets/img/cloud.jpg) repeat-y;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 1500px;

  /* Animate Background Image */

  -webkit-text-fill-color: transparent;
  -webkit-animation: aitf 8s linear infinite;

  /* Activate hardware acceleration for smoother animations */

  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
}

/* Animate Background Image */

@-webkit-keyframes aitf {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.bg_img {
  background-color: #040b14;
}

.h40 {
  min-height: 40px;
  display: none;
  text-align: center;
}

.modal-btn-bottom-right {
  position: fixed;
  /* Fixed positioning relative to the viewport */
  bottom: 20px;
  /* Distance from the top */
  right: 20px;
  /* Distance from the right */
  z-index: 1050;
  /* Ensure it sits above most other content */
}

.pattern_grid {
  background-image: url(../assets/img/pattern.svg);
  background-size: 73.3%;
}

/* Header Styling */
h1 {
  margin-bottom: 20px;
  color: #007bff;
  /* Blue color */
}

/* Input Field Styling */
.input-group {
  margin-bottom: 20px;
}

.form-control {
  border-radius: 5px;
}

/* Button Styling */
.btn {
  border-radius: 5px;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
  /* Darker shade of blue */
  border-color: #0056b3;
}

/* Chart Styling */
#leveyJenningsChart {
  background: #fff;
  /*margin-top: 20px;*/
  padding: 10px;
  width: 100%;

  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* @media (min-width: 700px) {
  #leveyJenningsChart {
    width: 720px;
  }
} */

/* Mean, SD, CV Styling */
.col-md-4 {
  margin-bottom: 10px;
}

.alert {
  border-radius: 5px;
  padding: 10px;
}

.alert-info {
  background-color: #17a2b8;
  /* Aqua color */
  color: #fff;
}

.alert-warning {
  background-color: #ffc107;
  /* Yellow color */
  color: #333;
}

.alert-success {
  background-color: #28a745;
  /* Green color */
  color: #fff;
}

/* Textarea Styling */
#violationDetails {
  margin-top: 20px;
  border-radius: 5px;
  padding: 10px;
  height: 50px;
  background-color: #f8f9fa;
  /* Light gray color */
  resize: none;
  /* Disable resizing */
}

#violationDetails::placeholder {
  color: #999;
  /* Placeholder text color */
}

/* Responsive Styling */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }
}

.left_side {
  width: calc(100% - 300px);
  margin-left: 300px;
}

@media (max-width: 1199px) {
  .left_side {
    width: 100vw;
    margin-left: 0px;
  }
}
