/* Custom CSS for Zenvest */

/* Base styles */
body {
  font-family: "Albert Sans", sans-serif;
}

h1 {
  line-height: 1.25;
  font-size: 2.25rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  line-height: 1.25;
  font-size: 1.875rem;
  font-weight: 700;
}

h3 {
  line-height: 1.25;
  font-size: 1.25rem;
  font-weight: 600;
}

h4,
h5 {
  color: #000000;
}

a {
  cursor: pointer;
}

/* Component styles */
.banner {
  width: 100%;
  background-color: #ffffff;
  border-color: #e5e7eb;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .banner {
    padding-left: 16rem;
    padding-right: 16rem;
  }
}

@media (min-width: 1024px) {
  .banner {
    padding-left: 24rem;
    padding-right: 24rem;
  }
}

.btn1 {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  background-color: #2563eb;
  border-radius: 9999px;
  color: #ffffff;
  text-align: center;
  padding: 0.625rem 2rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn1:hover {
  background-color: #1d4ed8;
}

.btn2 {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #93c5fd;
  color: #2563eb;
  cursor: pointer;
  background-color: #ffffff;
  text-decoration: none;
  transition: all 0.2s;
}

.btn2:hover {
  background-color: #dbeafe;
}

.btn2-secondary {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #fbbf24;
  color: #d97706;
  cursor: pointer;
  background-color: #ffffff;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
}

.btn2-secondary:hover {
  background-color: #fef3c7;
}

.card {
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
}

.form-input {
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.75rem;
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}

.form-input:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.flash-msg {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin: 0.5rem 0;
  text-align: center;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid;
}

.flash-msg.success {
  background-color: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}

.flash-msg.warning {
  background-color: #fefce8;
  color: #a16207;
  border-color: #fde047;
}

.flash-msg.error {
  background-color: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}

.flash-msg.info {
  background-color: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.delete-btn {
  background-color: #ef4444;
  color: #ffffff;
  font-weight: 700;
  padding: 0.5rem;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.delete-btn:hover {
  background-color: #b91c1c;
}

.text-primary-900 {
  color: #1e3a8a;
}
.text-primary-800 {
  color: #1e40af;
}
.text-primary-600 {
  color: #2563eb;
}
.text-neutral-med {
  color: #6b7280;
}

.lucide-external-link {
  width: 1em;
  height: 1em;
  margin-left: 0.25em;
  display: inline-block;
  vertical-align: middle;
}

.underlined {
  text-decoration: underline;
  text-decoration-skip-ink: auto;
}
