/* Context Selector Inline Bubble Styles */

.vault-context-bubble {
  background: #E7F0F5;
  box-shadow: 5px 5px 3px -3px rgba(0,0,0,0.1);
  max-width: 25%;
}

.vault-context-inline-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.vault-context-inline-body .form-group {
  width: 100%;
  margin-bottom: 0;
}

.vault-context-inline-body label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #475467;
  text-transform: none;
  letter-spacing: normal;
}

/* Select2 dentro do context bubble — alinhamento e clear */
.vault-context-bubble .select2-container {
  width: 100% !important;
}

.vault-context-bubble .select2-container--default .select2-selection--single {
  height: 45px;
  display: flex;
  align-items: center;
  border-radius: 0.375rem;
  border: 1px solid #d0d5dd;
  background: #fff;
}

.vault-context-bubble .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
  padding-left: 10px;
  color: #344054;
  font-size: 1.2rem;
  font-weight: 600;
}

.vault-context-bubble .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #98a2b3;
}

/* Arrow */
.vault-context-bubble .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
  top: 4px;
  right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Clear (x)*/
.vault-context-bubble .select2-container--default .select2-selection--single .select2-selection__clear {
  line-height: 38px;
  font-size: 1.1rem;
  color: #667085;
  position: relative;
  top: -0.4rem;
}

/* Responsive */
@media (max-width: 600px) {
  .vault-context-bubble {
    max-width: 100%;
  }
  
  .vault-context-inline-body {
    flex-direction: column;
  }
}

