body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

#menuButton {
  width: 5vh;
  height: 5vh;
  position: absolute;
  margin-top: 1vh;
  margin-left: 1vh;
  z-index: 8;
  cursor: grab;
}

.menuButtonLines {
  width: 70%;
  height: 10%;
  border-radius: 5px;
  background-color: black;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20%;
}

#leftMenu {
  position: absolute;
  visibility: hidden;
  height: 88vh;
  width: 300px;
  margin-left: 0;
  margin-top: 0;
  padding-top: 10vh;
  padding-left: 1vh;
  background-color: white;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: black;
  z-index: 7;
  overflow-y: auto;
}

#appBuilderContainer {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.appBuilderTitle {
  font-size: 2.5em;
  color: #004080;
  font-weight: 600;
}

.appBuilderSubtitle {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 25px;
}

.inputGroup {
  margin-bottom: 20px;
  text-align: left;
}

label {
  font-size: 1.1em;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

input, select {
  width: 100%;
  padding: 10px;
  font-size: 1.1em;
  border: 2px solid #004080;
  border-radius: 5px;
}

#companyLogoSample {
  border: 2px solid #004080;
  border-radius: 5px;
}

.button {
  padding: 10px 20px;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  background-color: #004080;
  color: white;
  cursor: pointer;
  margin-top: 10px;
}

.button:hover {
  background-color: #003060;
}

.removeButton {
  background-color: red;
}

.removeButton:hover {
  background-color: darkred;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px gray;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.draggable {
  padding: 10px;
  margin: 5px 0;
  background: #ddd;
  cursor: grab;
}

.dropzone {
  border: 2px dashed #aaa;
  padding: 10px;
  min-height: 50px;
  display: flex;
  flex-direction: column;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  border: 1px solid black;
  padding: 5px;
  text-align: left;
}

.drag-hover {
  background-color: #e0f7fa !important;
  outline: 2px dashed #00acc1;
}

.drag-source {
  background-color: #fff3e0 !important;
  opacity: 0.8;
}
