.omnix-checkin-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #111, #000);
  padding: 20px;
  box-sizing: border-box;
}
.omnix-checkin-box,
.omnix-success-box {
  width: 100%;
  max-width: 400px;
  background: #0e0e0e;
  border-radius: 14px;
  padding: 35px 30px;
  box-shadow: 0 0 40px rgba(0,0,0,.8);
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}
.omnix-checkin-logo img { width: 160px; margin-bottom: 14px; }
.omnix-checkin-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.omnix-checkin-sub { font-size: 13px; color: #aaa; margin-bottom: 22px; }
.omnix-checkin-label { font-size: 13px; color: #ccc; text-align: left; margin-bottom: 6px; }
.omnix-optional { color: #666; font-size: 12px; }
.omnix-checkin-input {
  width: 100%; padding: 14px; border-radius: 8px; border: none;
  background: #1b1b1b; color: #fff; font-size: 15px;
  margin-bottom: 18px; box-sizing: border-box; outline: none; transition: box-shadow .2s;
}
.omnix-checkin-input:focus { box-shadow: 0 0 0 2px #ba2407; }
.omnix-checkin-error { color: #ff4d4d; font-size: 13px; margin-bottom: 10px; min-height: 18px; text-align: left; }
.omnix-team-selector { position: relative; margin-bottom: 22px; text-align: left; }
.omnix-team-selected {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 14px; background: #1b1b1b; border-radius: 8px;
  cursor: pointer; font-size: 14px; color: #ccc;
  user-select: none; transition: box-shadow .2s;
}
.omnix-team-selected:hover { box-shadow: 0 0 0 2px #ba2407; }
.omnix-chevron { margin-left: auto; font-size: 12px; color: #666; transition: transform .2s; }
.omnix-team-selector.open .omnix-chevron { transform: rotate(180deg); }
.omnix-team-dropdown {
  display: none; position: absolute; top: calc(100% + 4px);
  left: 0; right: 0; background: #1a1a1a;
  border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,.7); z-index: 999; overflow: hidden;
}
.omnix-team-selector.open .omnix-team-dropdown { display: block; }
.omnix-team-search {
  width: 100%; padding: 11px 14px; background: #222;
  border: none; border-bottom: 1px solid #333;
  color: #fff; font-size: 13px; outline: none; box-sizing: border-box;
}
.omnix-team-search::placeholder { color: #555; }
.omnix-team-list {
  max-height: 220px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: #ba2407 #1a1a1a;
}
.omnix-team-list::-webkit-scrollbar { width: 5px; }
.omnix-team-list::-webkit-scrollbar-track { background: #1a1a1a; }
.omnix-team-list::-webkit-scrollbar-thumb { background: #ba2407; border-radius: 3px; }
.omnix-team-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; cursor: pointer; font-size: 14px;
  color: #ccc; transition: background .15s;
}
.omnix-team-item:hover,
.omnix-team-item.selected { background: #2a2a2a; color: #fff; }
.omnix-item-flag { font-size: 20px; line-height: 1; }
.omnix-item-name { flex: 1; }
.omnix-checkin-btn {
  width: 100%; padding: 14px; background: #ba2407; color: #fff;
  font-weight: 600; border: none; border-radius: 8px;
  cursor: pointer; font-size: 16px; transition: background .2s, color .2s; margin-top: 4px;
}
.omnix-checkin-btn:hover  { background: #1ed760; color: #000; }
.omnix-checkin-btn:disabled { opacity: .6; cursor: not-allowed; }
.omnix-success-icon  { font-size: 52px; margin: 10px 0; }
.omnix-success-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #1ed760; }
.omnix-success-msg   { font-size: 14px; color: #aaa; line-height: 1.6; }


/* Phone prefix */
.omnix-phone-wrapper {
  display: flex;
  align-items: center;
  background: #1b1b1b;
  border-radius: 8px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.omnix-phone-wrapper:focus-within {
  box-shadow: 0 0 0 2px #ba2407;
}
.omnix-phone-prefix {
  padding: 14px 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-right: 1px solid #333;
  white-space: nowrap;
  flex-shrink: 0;
}
.omnix-phone-wrapper .omnix-checkin-input {
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1;
}
