body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}
.content {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
  background-color: #f8f9fa;
  padding: 10px 0;
  font-size: 0.8rem;
}

/* Animation for the tick (✔) */
@-webkit-keyframes tickAnimation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tickAnimation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Animation for the cross (✖) */
@-webkit-keyframes crossAnimation {
  0% {
    transform: rotate(0deg) scale(0);
    opacity: 0;
  }
  50% {
    transform: rotate(180deg) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
@keyframes crossAnimation {
  0% {
    transform: rotate(0deg) scale(0);
    opacity: 0;
  }
  50% {
    transform: rotate(180deg) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.tick-animated {
  -webkit-animation: tickAnimation 0.5s ease-in-out forwards;
  animation: tickAnimation 0.5s ease-in-out forwards;
}

.cross-animated {
  -webkit-animation: crossAnimation 0.5s ease-in-out forwards;
  animation: crossAnimation 0.5s ease-in-out forwards;
}

/* Add these styles to the existing styles.css file */
.list-group-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.validation-label {
  flex-shrink: 0;
  margin-right: 10px;
}

.validation-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.validation-value {
  text-align: right;
}

.badge {
  min-width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.platform-badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}

/* Keep the existing animation styles */
::-webkit-input-placeholder {
  opacity: 0.3 !important;
}
::-moz-placeholder {
  opacity: 0.3 !important;
}
:-ms-input-placeholder {
  opacity: 0.3 !important;
}
::-ms-input-placeholder {
  opacity: 0.3 !important;
}
::placeholder {
  opacity: 0.3 !important;
}

.option-group {
  background-color: #f8f9fa;
  border-radius: 6px;
  padding: 12px 15px;
}

.option-group h6 {
  color: #495057;
  font-weight: 600;
}

.form-check {
  margin-bottom: 0.4rem;
}

.form-check:last-child {
  margin-bottom: 0;
}

/* Update the toolSearch styles */
#toolSearch {
  border: 1px solid #dee2e6;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s ease-in-out;
}

#toolSearch:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: none;
}

/* Remove the default search input clear button in webkit browsers */
#toolSearch::-webkit-search-cancel-button {
  display: none;
}

/* Style for no results message */
#noResultsRow td {
  background-color: #f8f9fa;
}

/* Clickable table rows */
tbody tr {
  transition: background-color 0.15s ease-in-out;
}

tbody tr:hover {
  background-color: rgba(13, 110, 253, 0.05) !important;
}

/* Prevent text selection on row click */
tbody tr {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Keep the badge clickable */
.badge {
  pointer-events: none;
}
