

.boi-destaque {
  color: #4A2C17;
}

.boi-destaque-forte {
color: brown;
}
.boi-text {
  color:#4A2C17
}  


.gurps-instant-bazaar {
  font-family: 'Signika', sans-serif;
}

/* .gurps-instant-bazaar .window-content {
  padding: 1rem;
} */

/* Character Selection Styles */
.character-selection-section {
  margin-bottom: 1rem;
}

.character-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 10px;
}

.character-item {
  padding: 0.5rem;
  border: 1px solid brown;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
  background-color: #d9c09f;
}

.character-item:hover {
  border-color: brown;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #ddc099;
}

.character-item.selected {
  border-color: brown;
  border-width: 2px;
  background-color: #e2bc8a;

}

.character-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  width: 100%;
  color: brown;
}

.character-label input[type="radio"] {
  margin: 0;
}

.character-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.character-wallet {
  font-size: 0.9rem;
  color: var(--color-text-highlight);
  font-weight: bold;
}

.no-characters-message {
  text-align: center;
  padding: 1rem;
  border: 1px solid brown;
  border-radius: 4px;
  background-color: var(--color-bg-option);
}

.no-characters-message p {
  margin: 0;
  font-style: italic;
  color: var(--color-text-dark-secondary);
}

/* Wallet Display */
.wallet-accordion {
  margin: 0;
}

/* Vendor Header Styles */
.vendor-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}

.vendor-header-controls {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.vendor-header h2 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: bold;
  color: brown;
}

.vendor-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-to-vendors {
  padding: 0.5rem 1rem;
  border: 1px solid brown;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

.back-to-vendors:hover {
  border-width: 2px;
  transform: translateY(-1px);
}

/* Wallet Display */
.wallet-accordion {
  margin-bottom: 1rem;
  border: 1px solid brown;
  border-radius: 4px;
  background-color: var(--color-bg-option);
}

.wallet-summary {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
  list-style: none;
}

.wallet-summary:hover {
  background-color: var(--color-bg);
}

.wallet-summary::-webkit-details-marker {
  display: none;
}

.wallet-title {
  flex: 1;
  color: #4A2C17;
}

.accordion-icon {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
  color: var(--color-text-dark-secondary);
}

.wallet-accordion[open] .accordion-icon {
  transform: rotate(180deg);
}

.wallet-details-content {
  padding: 0 0.75rem 0.75rem 0.75rem;
  border-top: 1px solid brown;

}

/* Purchase Controls Section */
.purchase-controls-section {
  padding: 0.5rem;
  border: 2px solid brown;
  border-radius: 8px;
  margin-bottom: 10px;

}

.purchase-summary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.purchase-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.selected-count {
  color: #4A2C17;
}

.total-price {
  color: #4A2C17;
  font-size: 1.1rem;
}

.purchase-actions {
  display: flex;
  gap: 4px;
}



.purchase-btn,
.clear-btn {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid brown;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  scale: 0.8;
}

.purchase-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.purchase-btn:not(:disabled):hover,
.clear-btn:hover {
  border-width: 2px;
  transform: translateY(-1px);
}

/* Form Actions - Buttons side by side */
.form-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.form-actions button {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: 1px solid brown;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-actions button:hover {
  border-width: 2px;
  transform: translateY(-1px);
}

.form-actions button.primary {
  min-width: 140px;
}

.form-actions button.secondary {
  min-width: 100px;
}

/* Search Container */
.search-container {
  margin-bottom: 4px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 0.6rem;
  color: #6c757d;
  z-index: 2;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.25rem;
  border: 1px solid brown;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: brown;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.clear-search-btn {
  position: absolute;
  right: 0.5rem;
  padding: 0.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #6c757d;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: all 0.2s ease;
}

.clear-search-btn:hover {
  background-color: brown;
  color: #333;
}

/* Item List Container */
.item-list-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid brown;
  border-radius: 4px;
  padding: 0.5rem;
}

.item-list {
  display: flex;
  flex-direction: column;

}

/* Vendor Item Card */
.vendor-item-card {
  padding: 0.4rem;
  border: 1px solid #8f34004a;
  border-radius: 4px;
  transition: all 0.2s ease;
  background-color: #d9c09f;
  display: flex;
  align-items: center;

  margin: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

.vendor-item-card:hover {
  border-color: brown;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vendor-item-card.selected {
  border-color: brown;
  border-width: 2px;
  background-color: var(--color-bg-option);
}

.item-details {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.item-selection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 60px;
}

.item-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.item-quantity-input {
  width: 50px;
  padding: 0.25rem;
  border: 1px solid brown;
  border-radius: 4px;
  text-align: center;
  font-size: 0.9rem;
}

.item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.item-name {
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0;
  line-height: 1.3;
  color: brown;
}

.item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.item-price {
  font-weight: bold;
  font-size: 1rem;
  color: var(--color-text-highlight);
}

.item-weight {
  color: var(--color-text-dark-secondary);
}

.item-stock {
  font-weight: 600;
  color: var(--color-text-highlight);
}

.item-pageref {
  font-size: 0.8rem;
  color: var(--color-text-dark-secondary);
  font-style: italic;
}

.item-actions {
  display: flex;
  align-items: center;
}

.vendor-item-card .item-actions {
  margin-left: 1rem;
  flex-shrink: 0;
}

.edit-item-btn {
  padding: 0.5rem;
  border: 1px solid brown;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  scale: 0.8;
}

.edit-item-btn:hover {
  border-width: 2px;
  transform: translateY(-1px);
}

/* No Items Message */
.no-items {
  text-align: center;
  padding: 2rem;
  font-style: italic;
  opacity: 0.7;
  border-radius: 4px;
  background-color: var(--color-bg-option);
}

/* Player Wallet Styles */
.player-wallet-content {
  display: flex;
  flex-direction: column;
}

.vendor-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid brown;
  border-radius: 4px;
  padding: 0.5rem;
  color: #4A2C17;
}

.vendor-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid brown;
  border-radius: 4px;
  transition: all 0.2s ease;
  background-color: #d9c09f;
}

.vendor-item:hover {
  border-color: brown;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vendor-item button {
  padding: 0.5rem 1rem;
  border: 1px solid brown;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vendor-item button:hover {
  border-width: 2px;
  transform: translateY(-1px);
}

/* Money Management Styles */
.user-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.user-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid brown;
  border-radius: 4px;
}

.user-money-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.money-input {
  width: 80px;
  padding: 0.25rem;
  border: 1px solid brown;
  border-radius: 4px;
  text-align: center;
}

/* Vendor Creation Styles */


#sell-items .form-group label,
#currency-settings .form-group label,
#money-management .form-group label,
#player-wallet .form-group label,
#vendor-display .form-group label,
#vendor-creation .form-group label,
#vendor-edit .form-group label,
#vendor-item-edit .form-group label,
#gem-distribution .form-group label,
#vendor-manager .window-content .form-group label {
  display: block;
  margin-bottom: 0;
  font-weight: bold;
  min-width: 120px;
  color: #4A2C17;
}


.form-group label small {
  display: block;
  width: 100%;
  font-weight: normal;
  font-size: 0.8rem;
  color: var(--color-text-dark-secondary);
  margin-top: 0.25rem;
}

/* .form-group input,
.form-group select {
  flex: 1;
} */

.form-group.stacked .form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.form-fields {
  display: flex;
  gap: 0.5rem;
  align-items: end;
}

/* .form-fields button {
  flex: 1;
} */

.file-picker {
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.file-picker:hover {
  border-width: 2px;
}

/* Vendor Manager Styles */
.vendor-actions {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.vendor-actions button {
  padding: 0.25rem 0.5rem;
  border: 1px solid brown;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
}

.vendor-actions button:hover {
  border-width: 2px;
}

.vendor-thumbnail {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.vendor-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vendor-status {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.1rem 0;
  color: #4A2C17
}

.vendor-status.active {
  border-bottom: 2px solid;
  color:brown;
}

.vendor-status.inactive {
  border-bottom: 2px dashed;
  opacity: 0.8;
  color: #654321;
}

/* GM Tools Styles */
#gm-tools-bazaar .window-content {
  background-image: url('/modules/gurps-instant-bazaar/img/leonardo.jpg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
}

#gm-tools-bazaar .window-content .gm-tools-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 250px;
}

/* #player-wallet  .window-content {
  background-image: url('/modules/gurps-instant-bazaar/img/vendor.jpg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
} */

/* #vendor-display .window-content .player-wallet {
  background-image: url(/modules/gurps-instant-bazaar/img/vendor.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
} */


#sell-items,
#currency-settings,
#money-management,
#player-wallet,
#vendor-display,
#vendor-creation,
#vendor-edit,
#vendor-item-edit,
#gem-distribution,
#vendor-manager .window-content {
  background-image: url('/modules/gurps-instant-bazaar/img/vendor.jpg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  }


.button-row {
  display: flex;
  gap: 4px;
}


.button-row button {
  flex: 1;
}

.button-row button:hover {
  border-width: 2px;
  transform: translateY(-1px);
}

.button-row button i {
  margin-right: 0.5rem;
}


button.secondary:hover {
  opacity: 1;
}

/* Animation for item removal */
.vendor-item-card.removing {
  animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
.boi-button-group{
  display: flex;
  gap: 8px; /* opcional */
  font-size: 12px;
}

.boi-button-group > * {
  flex: 1 1 0; /* cresce igualmente */
  min-width: 0; /* evita overflow de conteúdo */
}

label .gem-distribution-form {
  color: #4A2C17;
}

/* Drag feedback */
.vendor-item-card.drag-feedback {
  box-shadow: 0 4px 12px var(--color-shadow-primary);
  border-color: brown;
}

/* Currency Settings Styles */
.coin-denominations-container {
  border: 1px solid brown;
  border-radius: 4px;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
}

.coin-denomination-item {
  margin-bottom: 0.75rem;
}

.coin-denomination-item:last-child {
  margin-bottom: 0;
}

.coin-denomination-item .form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.5rem;
  align-items: end;
}

.notes {
  font-size: 0.8rem;
  color: var(--color-text-light-secondary);
  font-style: italic;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.warning-message {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 4px;
  padding: 0.75rem;
  margin: 0.5rem 0;
  color: #856404;
}

.warning-message p {
  margin: 0;
  font-size: 0.9rem;
}

/* Coin Breakdown Styles */
.coin-breakdown {
  margin-bottom: 0;
}

.coin-breakdown h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: bold;
  color: #4A2C17;
}

.coin-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 16px;
}

.coin-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid brown;
  border-radius: 4px;
  font-size: 1rem;
  color: brown;
}

.coin-count {
  font-weight: bold;
  color: var(--color-text-highlight);
}

.coin-name {
  color: #4A2C17;
}

/* No Coins Message */
.no-coins-message {
  text-align: center;
  padding: 1rem;
  font-style: italic;
  opacity: 0.7;
  color: #4A2C17;
}

.no-coins-message p {
  margin: 0;
  color: var(--color-text-dark-secondary);
}

/* GM Approval Settings Styles */
#automaticSellGroup {
  transition: opacity 0.3s ease;
}

#automaticSellPercentage {
  width: 100%;
  margin: 0.5rem 0;
}

#automaticSellPercentage:disabled {
  cursor: not-allowed;
}

#sellPercentageValue {
  font-weight: bold;
  color: var(--color-text-highlight);
}

/* Sell Items Application Styles */
.sell-items-content {
  display: flex;
  flex-direction: column;
}

.sell-controls-section {
  padding: 0.5rem;
  border: 2px solid brown;
  border-radius: 8px;
  background-color: var(--color-bg-option);
  margin-bottom: 1rem;
}

.sell-summary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sell-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.selected-count {
  color: #4A2C17;
}

.total-value {
  color: var(--color-text-highlight);
  font-size: 1.1rem;
}

.approval-note,
.auto-sell-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text-dark-secondary);
}

.sell-actions {
  display: flex;
}

.sell-btn,
.clear-btn {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid brown;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  scale: 0.8´
}

.sell-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  scale: 0.8;
}

.sell-btn:not(:disabled):hover,
.clear-btn:hover {
  border-width: 2px;
  transform: translateY(-1px);
}


/* Sell Item Card */
.sell-item-card {

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem;
  border: 1px solid #8f34004a;
  border-radius: 4px;
  transition: all 0.2s ease;
  background-color: #d9c09f;
  margin: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}


.sell-item-card:hover {
  border-color: brown;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sell-item-card.selected {
  border-color: brown;
  border-width: 2px;
  background-color: var(--color-bg-option);
}

.sell-item-card .item-details {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sell-item-card .item-selection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 60px;
}

.sell-item-card .item-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.sell-item-card .item-quantity-input {
  width: 50px;
  padding: 0.25rem;
  border: 1px solid brown;
  border-radius: 4px;
  text-align: center;
  font-size: 0.9rem;
}

.sell-item-card .item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sell-item-card .item-name {
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
}

.sell-item-card .item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.sell-item-card .item-price {
  font-weight: bold;
  font-size: 1rem;
  
}

.sell-item-card .item-weight {
  color: var(--boi-destaque);
}

.sell-item-card .item-quantity {
  font-weight: 600;
  color: var(--color-text-highlight);
}

.sell-item-card .item-pageref {
  font-size: 0.8rem;
  color: var(--color-text-dark-secondary);
  font-style: italic;
}



.wallet-summary:hover {
  background-color: var(--color-bg);
}

.wallet-summary::-webkit-details-marker {
  display: none;
}

.accordion-icon {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
  color: #4A2C17;
}

.wallet-accordion[open] .accordion-icon {
  transform: rotate(180deg);
   color: #4A2C17;
}


.hidden {
  display: none;
}

.dialog-app .dialog-header {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid brown;
}

.dialog-app .dialog-header h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-text-highlight);
}

.dialog-app .dialog-header p {
  margin: 0;
  color: var(--color-text-dark-secondary);
}

.dialog-app .item-list-section {
  margin-bottom: 1rem;
}

.dialog-app .item-list-section h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: bold;
}

.dialog-app .dialog-item-list {
  margin: 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border: 1px solid brown;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
}

.dialog-app .dialog-item-list li {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.dialog-app .total-section {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid brown;
  border-radius: 4px;
  background-color: var(--color-bg-option);
  text-align: center;
}

.dialog-app .total-section p {
  margin: 0;
  font-size: 1.1rem;
}

.dialog-app .total-cost,
.dialog-app .total-value {
  font-weight: bold;
  color: var(--color-text-highlight);
  font-size: 1.2rem;
}

.dialog-app .slider-group {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid brown;
  border-radius: 4px;
  background-color: var(--color-bg-option);
}

.dialog-app .slider-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.dialog-app .slider-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.dialog-app .slider-controls input[type="range"] {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  outline: none;
}

.dialog-app .percentage-display {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-width: 80px;
}

.dialog-app .percentage-display input[type="number"] {
  width: 60px;
  padding: 0.25rem 0.5rem;
  border: 1px solid brown;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
}

.dialog-app .percentage-display span {
  font-weight: bold;
}

.dialog-app .final-payment-display {
  margin: 0;
  padding: 0.5rem;
  border-radius: 4px;
  text-align: center;
  font-size: 1rem;
}

.dialog-app .final-payment-display span {
  font-weight: bold;
  color: var(--color-text-highlight);
  font-size: 1.1rem;
}

.dialog-app .dialog-buttons {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  border-top: 1px solid brown;
}

.dialog-app .dialog-buttons button {
  padding: 0.75rem 1.5rem;
  border: 1px solid brown;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dialog-app .dialog-buttons button:hover {
  border-width: 2px;
  transform: translateY(-1px);
}

.dialog-app .dialog-buttons button.primary {
  min-width: 120px;
  
}

.dialog-app .dialog-buttons button.secondary {
  min-width: 100px;
}

.boi-button-small {
    cursor: pointer;
    padding: 15px 10px;
    font-size: 12px;
    font-weight: bold;
    background: linear-gradient(to bottom, #A0522D 0%, #8B4513 50%, #654321 100%);
    color: #F5DEB3;
    border-radius: 8px;
    border: 2px solid #4A2C17;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 2px 4px rgba(0, 0, 0, 0.6);
    transition: all 0.1s 
ease;
    margin-bottom: 8px;
}



.boi {
  outline: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
  padding: 18px ;
  font-size: 14px;
  font-weight: bold;
  background: linear-gradient(to bottom, #A0522D 0%, #8B4513 50%, #654321 100%);
  color: #F5DEB3;
  border-radius: 8px;
  border: 2px solid #4A2C17;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 2px 4px rgba(0, 0, 0, 0.6);
  transition: all 0.1s ease;
  position: relative;
  top: 0;
}

/* Efeito hover */
.boi:hover {
  background: linear-gradient(to bottom, #B8651F 0%, #9B4E1A 50%, #7A4B2A 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.4),
    0 0 8px rgba(184, 101, 31, 0.3);
  transform: translateY(-1px);
}

/* Efeito de apertar */
.boi:active {
  top: 2px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.3);
  transform: scale(0.98);
}


.boi-input {
  background: rgba(245, 245, 245, 0.37);
  border: 1px solid brown;
  border-radius: 6px;
  /* padding: 12px 16px; */
  font-size: 16px;
  color: brown !important;
  outline: none;
  transition: all 0.2s ease;
  margin-bottom: 6px;
}

.boi-input::placeholder {
  color: brown;
  margin-left: 90px;
  opacity: 0.8;
}

.boi-input:focus {
  /* background: linear-gradient(to bottom, #A0522D, #8B4513); */
  border-color: #D2691E;
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.3),
    0 0 8px rgba(210, 105, 30, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.boi-input:hover {
  border-color: #8B4513;
}

.b-strong {
  color: brown;
  font-size: 24px;
  font-family: var(--font-h1);
}

.titles {
  color: #4A2C17;
  font-size: 36px;
  font-family: var(--font-h1);
  display: flex;
  text-align: center;
  justify-content: center;
}

.boi-scale {
  scale: 0.8;
}