/* Negative margin for main banner video */
.video-negative-margin {
  margin-top: -32px;
  margin-bottom: -32px;
}
@media (min-width: 768px) {
  .video-negative-margin {
    margin-top: -48px;
    margin-bottom: -48px;
    margin-left: 0;
    margin-right: auto;
  }
}
/* Consistent textbox styling */
.text_input {
  background: #23272f;
  color: #fff;
  border: 1.5px solid #444;
  border-radius: 0.5rem;
  padding: 0.5rem 0.9rem;
  font-size: 1rem;
  outline: none;
  transition: border 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px #0002;
}
.text_input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px #2563eb44;
}

/* Custom checkbox styling */
.custom-checkbox {
  appearance: none;
  width: 1.1em;
  height: 1.1em;
  border: 2px solid #facc15;
  border-radius: 0.3em;
  background: #23272f;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  transition: border 0.18s, box-shadow 0.18s;
}
.custom-checkbox:checked {
  background: #facc15;
  border-color: #facc15;
}
.custom-checkbox:checked:after {
  content: '';
  position: absolute;
  left: 0.28em;
  top: 0.08em;
  width: 0.3em;
  height: 0.55em;
  border: solid #23272f;
  border-width: 0 0.18em 0.18em 0;
  transform: rotate(45deg);
}
/* Mobile Bottom Navbar */
@media (max-width: 767px) {
  /* .main-header { display: none !important; }  REMOVE this line to always show top navbar on mobile */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 54px;
    background: #000;
    border-top: 1.5px solid #232323;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 12px #000a;
  }
  .mobile-nav-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #bdbdbd;
    font-size: 0.65rem;
    text-decoration: none;
    font-weight: 500;
    gap: 0px;
    height: 100%;
    transition: color 0.15s;
  }
  .mobile-nav-label {
    font-size: 0.62rem;
    margin-top: 0px;
    letter-spacing: 0.01em;
    font-weight: 500;
  }
  .mobile-nav-item i {
    font-size: 1.7em;
    margin-bottom: 0px;
    line-height: 1;
  }
  .mobile-nav-item.create {
    color: #fff;
    background: #2563eb;
    border-radius: 9999px !important;
    width: 3.2em !important;
    height: 3.2em !important;
    min-width: 3.2em !important;
    min-height: 3.2em !important;
    aspect-ratio: 1/1;
    margin-top: -1.1em;
    box-shadow: 0 2px 8px #2563eb55;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.2em;
    padding: 0;
    border: 2px solid #232323;
    outline: none;
    transition: background 0.15s, box-shadow 0.15s;
    overflow: hidden;
    box-sizing: border-box;
  }
  .mobile-nav-item.create i {
    font-size: 2.1em;
    margin-bottom: 0;
    line-height: 1;
    display: block;
  }
  .mobile-nav-item.create .mobile-nav-label {
    display: none;
  }
  .mobile-nav-item.active, .mobile-nav-item:active, .mobile-nav-item:hover {
    color: #fff;
  }
  main {
    padding-bottom: 62px !important;
  }
}
@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none !important;
  }
  .main-header { display: flex !important; }
}
/* Ensure main banner video is always visible and responsive */
#main-banner-video, .main-banner-video {
  display: block !important;
  max-width: 100%;
  height: auto;
  background: transparent;
}
@media (min-width: 768px) {
  #main-banner-video, .main-banner-video {
    max-width: 420px;
    width: 100%;
    height: auto;
  }
}

.vibepost-title{
    color: white;
    font-size: 50px;
    text-align: center;
}

.header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1px;
}

.form-conatiner {
    margin: 50px;
    width: 50%;
    padding: 50px;
}

::selection {
    background: #a5b4fc; /* Soft indigo (Tailwind indigo-300) for better contrast and modern look */
    color: #18181b; /* Very dark gray for readability */
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

@media (max-width: 640px) {
  .bulk-action-label {
    display: none;
  }
  .bulk-action-btn {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    min-width: 2.5rem;
    justify-content: center;
  }
}