@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* body {
  margin: 0;
  min-height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #2c3e50;
} */

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    text-align: center;
     background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%);
    color: white !important;
    padding: 20px;
    border-radius: 15px;
/*     margin-bottom: 30px; */
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}




header h1 {
    font-size: 45px !important;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.lists-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.list-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important;
  overflow: hidden;
  transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;
  animation: slideIn 0.5s ease-out;
}

.list-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.list-header {
  background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%);
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #c8e6c9;
  position: relative;
	color:white !important;
}

.list-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #4caf50, transparent) !important;
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}

.list-header:hover::after {
  opacity: 1;
}

.list-header h2 {
  margin: 0;
  color: White;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.count-badge {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.badge {
  background: #4caf50 !important;
  color: White !important;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 4px rgba(76, 175, 80, 0.2);
  transition: transform 150ms ease-in-out;
}

.badge:hover {
  transform: scale(1.05);
}

textarea {
  width: 100%;
  height: 250px;
  padding: 1.25rem;
  border: none;
  resize: vertical;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.925rem;
  line-height: 1.6;
  color: #2c3e50;
  background: #fff;
  box-sizing: border-box;
  transition: background-color 250ms ease-in-out;
}

textarea:focus {
  outline: none;
  background: #fafafa;
}

.toolbar {
  padding: 0.75rem;
  background: #f5f5f5 !important;
  border-top: 1px solid #e0e0e0 !important;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.toolbar button {
  padding: 0.5rem;
  background:#a7a7a7!important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 4px;
  cursor: pointer;
  transition: all 150ms ease-in-out !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.toolbar button:hover {
  background: #2196f3 !important;
  border-color: #2196f3 !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

.toolbar button:active {
  animation: pulse 0.2s ease-in-out;
}

.options {
  background:#fff !important;
  padding: 1.5rem;
  border-radius: 12px !important;
  margin: 1.5rem 0;
  display: flex;
  gap: 2.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important;
  animation: scaleIn 0.5s ease-out;
}

.options-group {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.925rem !important;
  color: #4a5568 !important;
  transition: color 150ms ease-in-out;
}

.options label:hover {
  color: #2196f3 !important;
}

.options input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px !important;
  border: 2px solid #bdbdbd !important;
  border-radius: 4px !important;
  cursor: pointer;
  position: relative;
  transition: all 150ms ease-in-out;
}

.options input[type="checkbox"]:checked {
  background:linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%)!important;
  border-color: #2196f3 !important;
}

.options input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  color: white !important;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.compare-button {
  background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%) !important;
  color: white !important;
  border: none !important;
  padding: 1rem 2.5rem;
  border-radius: 8px !important;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0;
  transition: all 250ms ease-in-out !important;
  box-shadow: 0 4px 6px rgba(33, 150, 243, 0.2) !important;
  position: relative;
  overflow: hidden;
}

.compare-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out;
}

.compare-button:hover {
  background: #1976d2 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(33, 150, 243, 0.3);
}

.compare-button:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.compare-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(33, 150, 243, 0.2);
}

.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  animation: slideIn 0.5s ease-out;
}

.result-section {
  background: #fff !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 250ms ease-in-out;
}

.result-section:hover {
  transform: translateY(-2px);
}

.result-header {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  background: linear-gradient(to right, #f8fafc, #fff);
}

.result-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}

.result-content {
  padding: 1.25rem;
  min-height: 150px;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd transparent;
}

.result-content::-webkit-scrollbar {
  width: 6px;
}

.result-content::-webkit-scrollbar-track {
  background: transparent;
}

.result-content::-webkit-scrollbar-thumb {
  background-color: #bdbdbd;
  border-radius: 3px;
}

.result-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-list li {
  padding: 0.5rem 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: #4a5568;
  border-bottom: 1px solid #eeeeee;
  transition: all 150ms ease-in-out;
}

.result-list li:hover {
  background-color: #f5f5f5 !important;
  padding-left: 0.5rem;
}

.result-list li:last-child {
  border-bottom: none;
}

select {
  padding: 0.5rem 2rem 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  font-size: 0.925rem;
  color: #4a5568;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234a5568' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  transition: all 150ms ease-in-out;
}

select:hover {
  border-color: #2196f3;
}

select:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

@media (max-width: 1024px) {
  .lists-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .results {
    grid-template-columns: 1fr;
  }

  .options {
    flex-direction: column;
    gap: 1rem;
  }

  .options-group {
    flex-wrap: wrap;
  }

/*   body {
    padding: 1rem;
  } */


}
@media (max-width:768px){
	.container{
		padding:0px;
	}
	header{
		margin-bottom:30px;
	}
}


