.footer {
    background-color: #333; /* Dark background to match the theme */
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px; /* Space above the footer */
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Button styling */
#open-form-btn {
    background-color: #708d5d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#open-form-btn:hover {
    background-color: #708d5d;
}

/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.7); /* Black with opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px; /* Set a max-width for better layout */
    position: relative;
    border-radius: 10px; /* Rounded corners for modal */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Common styles for both buttons */
.footer-button,
#open-form-btn {
  display: inline-block;        /* Ensures both behave like buttons */
  width: 200px;                 /* Same width for both */
  height: 50px;                 /* Same height for both */
  font-size: 1.2em;             /* Same font size */
  line-height: 50px;            /* Vertically center the text */
  text-align: center;           /* Center the text horizontally */
  background-color: #708d5d;    /* Match the color if desired */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;        /* So links look like buttons */
  margin: 5px;                  /* Optional spacing around buttons */
  transition: background-color 0.3s ease;
}

/* Common hover effect */
.footer-button:hover,
#open-form-btn:hover {
  background-color: #556B2F;
}
