
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f9f9f9;
}

body a {
    color: rgb(100, 100, 100);
}

body a:hover {
    color: black;
    text-decoration: none;
}


.company-autocomplete {
  position: relative;
  min-width: 60%;
  max-width: 95%;
}

.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  z-index: 1000;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  max-height: 240px;
  overflow-y: auto;
  margin-top: 4px;
  padding: 0;
  list-style: none;
}

.autocomplete-dropdown li {
  padding: 8px 10px;
  cursor: pointer;
}

.autocomplete-dropdown li:hover {
  background: #f2f2f2;
}

.hidden {
  display: none;
}

.page-wrapper {
  min-height: 100vh;  
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
  min-height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}


.page-header {
  font-weight: bold;
  border-bottom: 2px solid #333;
}

.page-header .title {
  font-size: 1.5rem;
  margin-left: .5rem;
}

.company-page-wrapper {
  display: flex;
  /* height: 100%;
  overflow: hidden; */
  justify-content: center;
}

.react-holder {
  flex-shrink: 0; /* stays fixed */
  z-index: 100;
  padding: .5rem;
  max-height: 100%;
  width: 100%;
}

#root {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.ugly-button {
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: .5rem 1rem;
    font-size: 1rem;
    text-decoration: none;
}

.ugly-button:hover {
    background-color: #218838;
    color: white;
}

.ugly-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}
