/* :::::----- Contactcontainer -----::::: */
.contactcontainer {
  display: flex;
  justify-content: center;
  gap: 10px;
  }

.contact a, .contact a:visited {
  text-decoration: none;
  color: var(--text-light);
  }

.dark-mode .contact a, .dark-mode .contact a:visited {
  color: var(--text-dark);
  }  

.contact a:hover {
  color: var(--primary-color);
  }

.dark-mode .contact a:hover {
  color: var(--primary-color);
  } 

table {
  width: 100%;
  table-layout: fixed; /* Fixes layout to respect widths */
}

.form {
  float: left;
  width: 47%;
  border-radius: 5px;
  padding: 0px 20px 0px 20px;
  margin-bottom: 0px;
  }

.address {
  float: left;
  width: 47%;
  border-radius: 5px;
  padding: 0px 20px 0px 20px;
  margin-bottom: 0px;
  margin-right: 60px;
  text-align: left;
  text-justify: inter-word;
  }

.social, .social a {
  color: var(--text-light);
  text-align: left;
  font-size: 1.3em;
  text-decoration: none;
  padding-top: 0px;
  transition: 0.3s;
  }

.dark-mode .social, .dark-mode .social a {
  color: var(--text-dark);
  transition: 0.3s;
  }  

.map {
  padding: 10px;
  }

.mapframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 5px;
  } 

input[type=text], select, textarea, input[type=email] {
  width: 100%;
  font-size: 0.8em;
  font-family: 'Roboto Condensed', 'Segoe UI', Arial, sans-serif;
  padding: 8px;
  margin-top: 7px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  color: var(--text-light);
  background-color: var(--background-color-light);
  }

.dark-mode input[type=text], .dark-mode select, .dark-mode textarea, .dark-mode input[type=email] {
  background-color: var(--background-color-dark);
  color: var(--text-dark);
  } 
  
  /* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  }
  
  /* Style the submit button */
input[type=submit] {
  font-size: 1em;
  font-family: 'Roboto Condensed', 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  text-align: center;
  background-color: var(--primary-color);
  padding: 10px 15px;
  border: 2px solid var(--text-dark);
  border-radius: 5px;
  cursor: pointer;
  float: right;
  margin-top: 6px;
  transition: background-color 0.6s ease;
  }

input[type=submit]:hover {
  background-color: var(--primary-color-hover);
  transition: background-color 0.6s ease;
  }  

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
  }

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
  }

/* Clear floats after the columns */
.line:after {
  content: "";
  display: table;
  clear: both;
  }

td {
  padding-left: 10px;
  }