#wrapper {
  overflow: hidden;
}

#topmast {
  position: fixed;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: auto;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  z-index: 999;
  top: -60px;
  /* Default position */
  transition: top 0.5s ease;
  /* Smooth transition for sliding */
}

#topmast.active {
  top: 0;
  /* Position when active */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background: #333;
    border-radius: 6px;
    transition: all 0.25s ease;
}

#editBar {
  height: 60px;
  width: 100%;
  padding: 0px 60px;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: right;
  opacity: 0;
}

/* default disabled style */
.editing {
    outline: none;
    transition: background-color 0.2s, outline 0.2s;
    cursor: default;
}

/* editing enabled style */
.editing.editable {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: text; 
    text-decoration-style: dotted;
    border-radius: 5px;
}

.toolbar {
  position: fixed;
  top: 10px;
  right: 10px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
}

.loadBtn, 
#toggleEditBtn{
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-align: center;
  color: white;
  font-size: 0.75em;
  font-weight: bold;
}

.loadBtn, #toggleEditBtn {
  background: var(--Linear, linear-gradient(95deg, #1A9B9C 0%, #59C0C1 0.01%, #1A9B9C 100%));
}

.loadBtn:hover {
  background: #02546C;
}

.session-welcome {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
}

.session-card {
  color: #fff;
  padding: 40px 50px;
  border-radius: 12px;
  text-align: center;
  transform: translateY(0px);
}

.session-card button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #fff;
  color: #000;
  cursor: pointer;
}

.boldYellow{
    color: #ffb80e;
    font-weight: 700;
}