/* Base styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 16px;
  background: white;
  min-height: 100vh;
}

/* Layout */
.container {
  max-width: 100%;
  margin: 0;
  padding: 16px 16px 40px;
  min-height: 100vh;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.container::-webkit-scrollbar {
  display: none;
}

.header {
  display: grid;
  grid-template-columns: 288px 1fr 288px;
  align-items: center;
  margin-bottom: 32px;
  padding: 0 16px;
}

.logo {
  width: 139px;
  height: auto;
  display: block;
  margin-top: -10px;
  margin-left: -10px;
  transition: all 0.3s ease;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

.logo:hover {
  opacity: 1;
}

.logo-container {
  position: relative;
  display: inline-block;
}

/* Add New Glubler Circle Button */
.add-glubler-circle-btn {
  position: fixed;
  right: 336px;
  top: 533px;
  width: 40px;
  height: 40px;
  background: #ffcf25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 101;
}

.add-glubler-circle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.add-glubler-circle-btn .add-icon {
  color: white;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Create custom + with rounded caps */
.add-glubler-circle-btn .add-icon::before,
.add-glubler-circle-btn .add-icon::after {
  content: "";
  position: absolute;
  background: white;
  border-radius: 2px;
}

.add-glubler-circle-btn .add-icon::before {
  width: 16px;
  height: 2.4px;
}

.add-glubler-circle-btn .add-icon::after {
  width: 2.4px;
  height: 16px;
}
