/* E Templating Custom Styles */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #363636;
}

main {
  flex: 1;
  background-color: #ffffff;
}

/* ============================================
   Navbar Styles
   ============================================ */
.navbar.is-light {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar-brand a.navbar-item {
  font-weight: 600;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
.navbar-brand a.navbar-item:hover {
  color: #3273dc;
}
.navbar-burger {
  cursor: pointer;
}
.navbar-burger span {
  background-color: #363636;
  display: block;
  height: 1px;
  left: calc(50% - 8px);
  position: absolute;
  transform-origin: center;
  transition-duration: 86ms;
  transition-property: background-color, opacity, transform;
  transition-timing-function: ease-out;
  width: 16px;
}
.navbar-burger span:nth-child(1) {
  top: calc(50% - 6px);
}
.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.navbar-burger span:nth-child(3) {
  top: calc(50% + 4px);
}
.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
.navbar-item.has-dropdown.is-hoverable:hover .navbar-dropdown {
  display: block;
}
.navbar-dropdown {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Layout Styles
   ============================================ */
.section {
  padding: 2rem 1.5rem;
}

.page-title {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: #363636;
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 1rem;
}

/* ============================================
   Form Styles
   ============================================ */
.field {
  margin-bottom: 1.5rem;
}
.field.is-grouped {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.label {
  font-weight: 600;
  color: #363636;
  margin-bottom: 0.5rem;
}

.control {
  position: relative;
}

.input,
.select select,
.textarea {
  border-radius: 4px;
  border: 1px solid #ebebeb;
  padding: 0.75rem;
  transition: all 0.3s ease;
}
.input:focus,
.select select:focus,
.textarea:focus {
  border-color: #3273dc;
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
  outline: none;
}
.input:disabled,
.select select:disabled,
.textarea:disabled {
  background-color: #fafafa;
  opacity: 0.6;
  cursor: not-allowed;
}

.input {
  width: 100%;
}
.input::placeholder {
  color: #b5bdc2;
}

.select select {
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* ============================================
   Button Styles
   ============================================ */
.button {
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  padding: 0.75rem 1.5rem;
}
.button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.button:active:not(:disabled) {
  transform: translateY(0);
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.button.is-primary {
  background-color: #3273dc;
  color: #ffffff;
}
.button.is-primary:hover:not(:disabled) {
  background-color: #2466d1;
}
.button.is-success {
  background-color: #48c774;
  color: #ffffff;
}
.button.is-success:hover:not(:disabled) {
  background-color: #3abc67;
}
.button.is-warning {
  background-color: #ffdd57;
  color: #363636;
}
.button.is-warning:hover:not(:disabled) {
  background-color: #ffd83e;
}
.button.is-danger {
  background-color: #f14668;
  color: #ffffff;
}
.button.is-danger:hover:not(:disabled) {
  background-color: #ef2e55;
}
.button.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* ============================================
   Table Styles
   ============================================ */
.table-container {
  overflow-x: auto;
  border-radius: 4px;
}

.table {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  background-color: #ffffff;
}
.table.is-striped tbody tr:nth-child(odd) {
  background-color: #fafafa;
}
.table.is-hoverable tbody tr:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}
.table.is-fullwidth {
  width: 100%;
}
.table thead {
  background-color: #f5f5f5;
  border-bottom: 2px solid #ebebeb;
}
.table thead tr th {
  font-weight: 600;
  color: #363636;
  padding: 1.5rem;
  text-align: left;
}
.table tbody tr td {
  padding: 1.5rem;
  border-bottom: 1px solid #ebebeb;
}
.table tbody tr td:last-child {
  border-right: none;
}
.table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================
   Card Styles
   ============================================ */
.card {
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: #ffffff;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.card-header {
  background-color: #f5f5f5;
  border-bottom: 1px solid #ebebeb;
  padding: 1.5rem;
  font-weight: 600;
  border-radius: 6px 6px 0 0;
}
.card-content {
  padding: 1.5rem;
}
.card-footer {
  background-color: #f5f5f5;
  border-top: 1px solid #ebebeb;
  padding: 1.5rem;
  border-radius: 0 0 6px 6px;
  display: flex;
  gap: 1rem;
}

/* ============================================
   Notification Styles
   ============================================ */
.notification {
  border-radius: 4px;
  border-left: 4px solid;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.notification.is-success {
  background-color: #effcf0;
  border-color: #48c774;
  color: #288147;
}
.notification.is-danger {
  background-color: #ffe0e6;
  border-color: #f14668;
  color: #c20f32;
}
.notification.is-warning {
  background-color: #fffaeb;
  border-color: #ffdd57;
  color: #8a6e00;
}
.notification.is-info {
  background-color: #eff0ff;
  border-color: #3273dc;
  color: #194690;
}
.notification .delete {
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.notification .delete:hover {
  opacity: 1;
}
.notification button.delete {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
}
.notification button.delete::before, .notification button.delete::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: currentColor;
  top: 50%;
  left: 0;
}
.notification button.delete::before {
  transform: rotate(45deg);
}
.notification button.delete::after {
  transform: rotate(-45deg);
}

/* ============================================
   Footer Styles
   ============================================ */
.footer {
  background-color: #fafafa;
  border-top: 1px solid #ebebeb;
  padding: 2rem 1.5rem;
  margin-top: auto;
}
.footer .content {
  text-align: center;
  color: #7a7a7a;
}
.footer .content p {
  margin: 0;
}
.footer .content p a {
  color: #3273dc;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .content p a:hover {
  text-decoration: underline;
}

/* ============================================
   Form Result Styles
   ============================================ */
.lp-form-result pre {
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 1.5rem;
  overflow-x: auto;
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #ebebeb;
  margin: 0;
}
.lp-form-result code {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", "Consolas", "source-code-pro", monospace;
  font-size: 0.875rem;
  color: #363636;
  line-height: 1.5;
}

/* ============================================
   Utility Classes
   ============================================ */
.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-6 {
  margin-top: 4rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

/* ============================================
   Responsive Design
   ============================================ */
@media screen and (max-width: 768px) {
  .section {
    padding: 1.5rem 1rem;
  }
  .page-title {
    font-size: 1.5rem;
  }
  .navbar-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .navbar-menu.is-active {
    max-height: 100vh;
  }
  .table-container {
    font-size: 0.875rem;
  }
  .card-footer {
    flex-direction: column;
  }
  .card-footer .button {
    width: 100%;
  }
  .field.is-grouped {
    flex-direction: column;
  }
  .field.is-grouped .control {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .page-title {
    font-size: 1.25rem;
  }
  .section {
    padding: 1rem 0.75rem;
  }
  .table {
    font-size: 0.75rem;
  }
  .table thead th,
  .table tbody td {
    padding: 0.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
