@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700&display=swap');

body {
  font-family: 'Barlow', sans-serif;
}

.header {
  background-color: #4A9D6D;
  color: white;
  padding: 1rem;
}

.header-container {
  max-width: 4xl;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav a {
  color: white;
  text-decoration: none;
}

.header-nav a:hover {
  text-decoration: underline;
}

.main-container {
    min-height: 100vh;
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
    --tw-gradient-from: #f8fafc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 250, 252, 0));
    --tw-gradient-to: #f1f5f9;
    padding: 2rem;
}

.content-wrapper {
    max-width: 4xl;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background-color: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2rem;
}

.h1-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.h2-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.h3-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #475569;
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.list {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 1rem;
}

.code-block {
    text-align: center;
    font-family: monospace;
    padding: 1rem;
    background-color: #f1f5f9;
    border-radius: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.overflow-x-auto {
    overflow-x: auto;
}

.mt-8 {
    margin-top: 2rem;
}

.text-center {
    text-align: center;
}

.link {
    color: #4A9D6D;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.table {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: left;
    color: #64748b;
}

.thead {
    font-size: 0.75rem;
    line-height: 1rem;
    color: #334155;
    text-transform: uppercase;
    background-color: #f1f5f9;
}

.th {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.tbody-tr {
    background-color: #fff;
    border-bottom-width: 1px;
}

.td {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.form-container {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.form-label {
    display: block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.form-select {
    width: 100%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-width: 2px;
    border-color: #e2e8f0;
    border-radius: 0.5rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.form-select:focus {
    border-color: #3b82f6;
    outline: none;
}

.hidden {
    display: none;
}

.results-container {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
      background-color: rgb(163, 177, 204);
    border-width: 2px;
      border-color: rgb(68, 87, 131);
}

h1, h2{
  color:#4A9D6D;
}
a{
  color:#4A9D6D;
}
#resultsContainer {
      background-color: rgb(163, 177, 204);
      border-color: rgb(68, 87, 131);
          
}
