/* Global Styles */
html,
body {
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
}

body {
  font-family: Arial, sans-serif;
  background-color: rgb(200, 200, 200);
  height: 100%;
  margin: 0;
  text-align: center;
  justify-content: center;
  overflow-x: hidden;
}


.navbar_left {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.coffee {
  margin-left: 10px;
}

.coffee:hover {
  color: #D0BB94 !important;
}



@media (max-width: 700px) {
  .full {
    display: none !important;
  }

  .short {
    display: inline !important;
  }
}

.short {
  display: none;
}

#title {
  font-size: 16px;
}

.navbar_logo img {
  height: 35px;
}

nav {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.navbar_right {
  margin-left: auto;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-right: 15px;
}

nav a:hover {
  color: gray;
}

thead {
  color: black;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 10, 10, 0.65);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    max-width: 50%;
    max-height: 50%;
    border-radius: 5px;
    position: relative;
    text-align: center;
    overflow-y: auto;
}

#main {
  text-align: left;
  margin-bottom: 1em;
    padding-left: 20px;
  padding-right: 20px;

}

.close-button {
    color: black;
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close-button:hover {
    opacity: 0.5;
}

