/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

 
 .velo-connector-actions-column {
  text-align: left !important;
  min-width: 180px
 }

 .velo-connector-actions-column-btns-wrap {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding-top: 8px;
 }

 .button.velo-connector-actions-column-btn {
    width: 30px;
    height: 30px;
    padding: 0 !important;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
  }

  .button.velo-connector-actions-column-btn.velo-connector-actions-column-btn-hidden {
    display: none !important;
  }

  .velo-connector-actions-column-order-attribute {
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1;
  }
 
 .velo-connector-action-column-btn-img {
   width: 20px;
   height: 20px;
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center;
 }
 
 .velo-connector-loading-img {
   display: none;
 }
 
 .velo-connector-loading .velo-connector-loading-img {
   display: block;
 }
 
 .velo-connector-loading .velo-connector-not-loading-img {
   display: none;
 }
 
 .velo-connector-toast {
   position: fixed;
   z-index: 10000;
   bottom: -100px;
   height: 60px;
   width: 90%;
   max-width: 600px;
   padding: 0 20px;
   right: 0;
   left: 0;
   margin: auto;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   border-radius: 10px;
   transition: bottom 300ms ease-in-out;
 }
 .velo-connector-toast p {
   font-size: 16px;
 }
 
 .velo-connector-toast .notice-dismiss {
   top: 0;
   bottom: 0;
   margin: auto;
 }
 .velo-connector-toast .notice-dismiss::before {
   color: white;
 }
 .velo-connector-toast-success {
   background: #03A271;
   color: white;
 }
 .velo-connector-toast-error{
   background: #F55050;
   color: white;
 }
 
 .velo-connector-toast-active {
   bottom: 20px;
 }

body.velo-connector-modal-open {
	overflow: hidden;
}

/* Accept order confirmation modal */
.velo-connector-modal {
	position: fixed;
	inset: 0;
	z-index: 100050;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
}

.velo-connector-modal.velo-connector-modal-open {
	display: flex;
}

.velo-connector-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	cursor: pointer;
}

.velo-connector-modal-dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 480px;
	max-height: min(90vh, 560px);
	display: flex;
	flex-direction: column;
	background: #fff;
	color: #1d2327;
	border-radius: 4px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
	border: 1px solid #c3c4c7;
	overflow: hidden;
}

.velo-connector-modal-title {
	margin: 0;
	padding: 16px 20px 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
}

.velo-connector-modal-body {
	padding: 12px 20px 20px;
	font-size: 14px;
	line-height: 1.55;
	white-space: pre-wrap;
	word-break: break-word;
	overflow-y: auto;
	flex: 1;
	min-height: 0;
}

.velo-connector-modal-footer {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	flex-shrink: 0;
	padding: 12px 16px 16px;
	border-top: 1px solid #dcdcde;
	background: #f6f7f7;
}

.velo-connector-modal-footer .button {
	min-width: 80px;
	justify-content: center;
}
