/* Base styles for vlabs_kvantylion */

/* Body base styles */
body {
  padding: 0;
  margin: 0;

  /* Варіант 8: Перламутровий → Небесний (опалесценція) */
  background: linear-gradient(to right, rgba(240, 240, 255, 0.6), rgba(186, 230, 253, 0.6));
  /* Майже білий з синім відтінком → блакитний. Асоціація: розсіювання світла, колоїди */

  font-family: "Segoe UI", sans-serif;
  min-height: 100vh;
}

/* Container adjustments */
.container {
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .container {
    padding: 16px;
  }
}

/* Fixed header utility */
#fixed-header,
.fixed-header {
  position: sticky;
  top: 0;
  background: white;
  padding: 10px;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Common table styles */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.data-table td,
.data-table th {
  text-align: center;
  border: 1px solid #dee2e6;
  padding: 0.5rem;
}

.data-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

/* reCAPTCHA badge hiding (per Google's terms, must include text notice in footer) */
.grecaptcha-badge {
  visibility: hidden;
}

/* General link styles */
a {
  transition: color 0.2s ease;
}

/* Common card styles */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Common button styles */
.btn {
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

/* Common heading styles */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #2d3748;
}

/* Common text styles */
p {
  line-height: 1.6;
  color: #4a5568;
}
