html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.custom-button {
    background-color: #97a822;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.custom-button:hover {
    background-color: #007bff;
    color: white;
    text-decoration: none;
}

.lmc-color {
    background-color: #97a822;
}

.brown-bar {
    position: absolute;
    top: 2in;
    left: 0;
    width: 100%;
    height: .7in;
    background-color: #7c7c81;
    z-index: 1;
}

.image-overlap {
    position: absolute;
    left: 1in;
    bottom: calc(100% - 3in);
    z-index: 2;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.popup-header {
    color: white;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header-success {
    background: #97a822;
}

.popup-header-failure {
    background: #ff0000;
}

.popup-close {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

.popup-body {
    padding: 16px;
    font-size: 16px;
    color: #333;
}