/* Size for brand */
nav .navbar-brand
{
    font-size: x-large;
}

/* Colors for brand */
nav .navbar-brand .blue
{
    color: #06631f;
}

body {
    background-image: url("/images/newbg.jpg");
    color: black;
}


table {
    table-layout: fixed;
    width: 90%;
    background-color: white;
}

tr:nth-child(even) {background-color: white;}


div {
    word-wrap: break-word;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

* {box-sizing: border-box;}

input[type=text], select, textarea {
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 2px;
  margin-bottom: 2px;
  resize: vertical;
}

input[type=submit] {
  background-color: #464D96;
  color: white;
  padding: 12px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}


.white-text {
    color: #FFFFFF;
}

.container {
  border-radius: 5px;
  background-color: white;
}

.accordion {
    width: 100%;
}

.accordion-body {
    width: 100%;
    text-align: left;
}

img {
    max-width: 100%;
    height: auto;
  }

/* Center website */
.main {
      max-width: 1000px;
      margin: auto;
}

.row {
     margin: 16px -16px;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
    padding: 8px;
}

/* Create three equal columns that floats next to each other */
  .column {
          float: left;
          width: 33.33%;
          display: none; /* Hide all elements by default */
}

  /* Clear floats after rows */
  .row:after {
            content: "";
            display: table;
            clear: both;
}

  /* Content */
  .content {
           background-color: white;
           padding: 10px;
}

  /* The "show" class is added to the filtered elements */
  .show {
        display: block;
}

  /* Style the buttons */
  .btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
  }

  .btn:hover {
    background-color: #ddd;
  }

  .btn.active {
    background-color: #666;
    color: white;
  }

form {
    width: 400px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.5;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 50%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #3e8e41;
}
