@import './base.css';
@import './iconfont.css';
@import './reset.css';

#app {
  max-width: 100%;
  margin: 0 auto;
  font-weight: normal;
}
input:-internal-autofill-selected {
  background: none !important;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
p {
  margin: 0;
}

a,
.green {
  text-decoration: none;
  color: hsla(160, 100%, 37%, 1);
  transition: 0.4s;
}

@media (hover: hover) {
  a:hover {
    background-color: hsla(160, 100%, 37%, 0.2);
  }
}

/* Responsive: prevent horizontal scroll on all screens */
html, body {
  overflow-x: hidden;
}

/* Responsive: tables and cards should not overflow */
@media (max-width: 768px) {
  .ant-table {
    font-size: 13px;
  }
  .ant-card {
    border-radius: 4px;
  }
  /* Ant Design form items stack better on mobile */
  .ant-form-item {
    margin-bottom: 12px;
  }
}

/* @media (min-width: 1024px) {
  body {
    display: flex;
    place-items: center;
  }

  #app {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 2rem;
  }
} */
