@font-face {
  font-family: interMedium;
  src: url(../font/Inter/static/Inter-Medium.woff2) format("woff2");
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: interbold;
  src: url(../font/Inter/static/Inter-Bold.woff2) format("woff2");
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: interregular;
  src: url(../font/Inter/static/Inter-Regular.woff2) format("woff2");
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: poppinssemibold;
  src: url(../font/Poppins/Poppins-SemiBold.woff2) format("woff2");
  font-display: swap;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: interMedium;
}

.success {
  color: green;
}

.error {
  color: red;
}

textarea,
input,
input.text,
input[type=text],
input[type=button],
input[type=email],
input[type=tel],
input[type=submit],
input[type=password],
.input-checkbox {
  -webkit-appearance: none;
  border-radius: 0;
}

svg {color: #fff;}

input {
  background-color: transparent;
  color: #fff;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

li {
  padding: 6px 0;
  margin-left: 20px;
}

p {
  font-size: 16px;
  font-family: interregular;
  opacity: 70%;
}

a {
  font-size: 16px;
  font-family: interregular;
  color: #829eb9;
  text-decoration: none;
  cursor: pointer;
}

strong {
  font-family: poppinssemibold;
}

h1,
h2,
h3,
h4,
h5,
h6,
label,
table,
p,
i {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  font-family: poppinssemibold;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 64px;
}

button {
  display: inline-block;
  padding: 8px 12px;
  font-size: 16px;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: #484f56;
}

.btn {
  padding: 8px 24px;
  font-size: 16px;
  background-color: #829eb9;
}

.spacer {
  padding-bottom: 120px;
}

body {
  overflow-x: hidden;
  background-color: #1f1f1f;
}

.color {
  background-color: #1f1f1f;
}

hr {
  border: 1px solid #494949;
  width: calc(100% + 32px);
  margin-left: -16px;
}

.history {
  margin: 40px 0;
  text-align: center;
}
.history hr {
  width: 75%;
  margin: auto;
}

.content {
  margin: auto;
  max-width: 1280px;
  padding: 0 40px;
}

.scroll {
  overflow-y: auto;
  max-height: calc(100% - 50px);
}

.home button {
  position: absolute;
  bottom: 20px;
}

.icon-arrow {
  stroke: #fff;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

h2,
p {
  margin: 10px;
}

header ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #829eb9;
}
header ul li {
  float: left;
}
header ul li a {
  display: block;
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
header ul li .logo {
  padding: 0;
}
header ul li .logo img {
  width: 110px;
}
header ul li a.active {
  background-color: #829eb9;
}

.page-center {
  min-height: calc(100vh - 60px);
  display: grid;
  place-items: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-content: center;
  align-items: center;
  max-height: 840px;
  width: 1240px;
}

.container {
  background-color: #333333;
  height: 400px;
  width: 600px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  position: relative;
}

/* verticale scheidingslijn */
.container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: #fff;
  opacity: 10%;
}

.container:first-child::after {
  display: none;
}

.innercontainer {
  padding: 20px;
}

.bigcontainer {
  background-color: #333333;
  height: 840px;
  width: 1240px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.search {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #89a4bb;
  padding-bottom: 6px;
}

.search input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  flex: 1;
  font-size: 16px;
}

.parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #333333;
  max-height: 840px;
  max-width: 1240px;
}

.div1 {
  grid-area: 1/1/2/2;
  max-height: 300px;
  border-right: 2px solid #494949;
  border-bottom: 2px solid #494949;
}

.div2 {
  grid-area: 1/2/2/5;
  max-height: 300px;
  border-bottom: 2px solid #494949;
}

.div3 {
  grid-area: 2/1/4/3;
  border-right: 2px solid #494949;
}

.div4 {
  grid-area: 2/3/4/5;
}

.div5 {
  grid-area: 1/1/-1/-1;
  width: 1208px;
  height: 808px;
}

.innercontainer {
  padding: 16px;
}

.contact-list {
  max-height: 180px; /* bepaalt hoogte van de lijst */
  overflow-y: auto;
  margin-top: 20px;
  padding-right: 6px;
}

q .contact-list::-webkit-scrollbar {
  width: 6px;
}

.contact-list::-webkit-scrollbar-track {
  background: #2b2b2b;
  border-radius: 4px;
}

.contact-list::-webkit-scrollbar-thumb {
  background: #6f8fa8;
  border-radius: 4px;
}

/* Contact item */
.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  margin-bottom: 6px;
  background: #3a3a3a;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
}

.active {
  background: #829eb9 !important;
}

/* Actie knoppen */
.contact-actions {
  display: flex;
  gap: 6px;
}

.contact-actions button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: none;
  background: #4a4a4a;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.contact-actions button:hover {
  background: #6f8fa8;
}

/* FORM */
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.form-grid-modal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.form-group input,
select {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid #89a4bb;
  color: #fff;
  padding: 6px 0;
  font-size: 15px;
  outline: none;
  max-width: 210px;
}

.form-group select {
  background-color: #1f1f1f;
}

.btn-primary {
  background: #7f9db6;
  border: none;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.balk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
}

.innerbalk {
  display: flex;
  align-items: center;
  gap: 12px;
}

table {
  padding-top: 12px;
  border-collapse: separate; /* belangrijk */
  border-spacing: 0 12px;
  width: 100%;
}

td {
  text-align: center;
}

/* ------------------- MODAL overlay ------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 880px;
  width: 90%;
  background: #1f1f1f;
  padding: 20px 20px 100px 20px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
.modal .close {
  position: absolute;
  right: 20px;
  top: 20px;
}

.modal h3 {
  margin: 0 0 1rem 0;
}

.modal label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.modal input[type=text],
.modal input[type=date] {
  width: 100%;
  padding: 0.4rem 0.6rem;
  background-color: #333333;
  color: #fff;
}

.modal-actions {
  margin-top: 1rem;
  text-align: right;
}

.btn-cancel {
  background: #1f1f1f;
  margin-right: 0.5rem;
}

.btn-save {
  background: #4a90e2;
  color: #fff;
}

.hidden {
  display: none;
}

.modal-submid {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.message {
  margin-top: 10px;
  color: #fff;
}

.show {
  display: block;
}

.grid .container .innercontainer .search {
  margin-bottom: 12px;
}

tr:nth-child(even) {
  background-color: #2d2d2d;
  padding: 0 4px;
}

.status {
  width: 40px;
  height: 40px;
  background-color: #1f1f1f;
  border-radius: 4px;
}

.status-new {
  background-color: red;
}

.status-done {
  background-color: rgb(4, 211, 4);
}

.status-gone {
  background-color: rgb(4, 211, 4);
  opacity: 10%;
}/*# sourceMappingURL=styles.css.map */