/* Common Form Buttons  */
.form-btns-group {
  display: flex;
  justify-content: flex-end;  /* push buttons to the right */
  align-items: center;
  gap: 10px;                  /* spacing between buttons */
  width: 100%;                /* span full row width inside flex/grids/forms */
  margin-top: 10px;           /* a little breathing room above */
}

.form-btn {
    background-color: #712B06;
    color: #ffffff;
    width: 150px;
    height: 30px;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    justify-self: end;
    cursor: pointer;

    padding: 10px 20px;
    box-shadow:
    0 4px 0 0 #1B0C06, /* Dark red shadow for 3D effect */
    0 5px 5px rgba(0, 0, 0, 0.2); /* Additional shadow */
    position: relative;
    transition: all 0.1s ease;
}

.form-btn:disabled {
  background-color: grey;
  cursor: not-allowed;
}


/* Export Form Buttons  */
.export-form-folio-selection-btn {
  background-color: #863B03;
  color: #ffffff;
  width: 150px;
  padding: 12px 24px;
  font-size: 12px;
  border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.export-form-folio-selection-btn:disabled {
  background-color: grey;
  cursor: not-allowed;
}

/* Confirmation Popup Form Buttons  */
.confirmation-popup-form-btns-div {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.confirm-btn,
.cancel-btn {
    background-color: #863B03;
    color: #ffffff;
    width: 150px;
    height: 30px;
    font-size: 12px;
    border-radius: 4px;
    justify-self: end;
}

/* LHS Panel Folio Section Mode Buttons */
.lhs-panel-folio-section-mode-btn {
    flex: 1;
    min-width: 150px;
    padding: 8px 5px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 5px;
    white-space: normal;
    line-height: 1.2;
}

.token-btn {
    background-color: #722B05;
    border: 3px solid red;
}

.artifact-btn {
    background-color: #722B05;
    border: 3px solid blue;
}

.disabled-btn {
    opacity: 0.5;
    background-color: #555;
}

.plus-minus-btn {
    background-color: #712B06;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    cursor: pointer;

    padding: 5px 5px;
    box-shadow:
    0 2px 0 0 #1B0C06, /* Dark red shadow for 3D effect */
    0 2px 2px rgba(0, 0, 0, 0.2); /* Additional shadow */
    transition: all 0.1s ease;
}

.plus-minus-btn:disabled {
    opacity: 0.5;
  background-color: grey !important;
  cursor: not-allowed;
}
/* ---------------------------------*/

/* LHS Panel Folio Section Clear Buttons */
.lhs-panel-folio-section-clear-btn {
    background-color: #722B05 !important;
    font-size: 16px; /* Larger size */
    color: white;
    border: none;
    padding: 10px;
    margin: 5px 0;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    position: relative;
}

.lhs-panel-folio-section-clear-btn::before {
    content: "✕";
    color: red !important;
    font-weight: bold;
    font-size: 24px; /* Larger size */
    margin-right: 8px;
    position: relative;
    top: 2px;
    text-shadow:
        1px 1px 0 red,
        -1px -1px 0 red,
        1px -1px 0 red,
        -1px 1px 0 red; /* Creates thicker lines */
    filter: drop-shadow(0 0 1px rgba(255,0,0,0.5)); /* Adds subtle glow */
}

.lhs-panel-folio-section-clear-btn.hand-drawn-x::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='red' stroke='red' stroke-width='3' d='M5,5 L19,19 M5,19 L19,5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.lhs-panel-folio-section-clear-btn:disabled {
  background-color: grey !important;
  cursor: not-allowed;
}

/* ---------------------------------*/


.zoom-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.zoom-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 1px rgba(0,0,0,0.3)); /* subtle shadow for depth */
}

.zoom-btn:hover img {
    filter: drop-shadow(0 0 2px #DE971F) brightness(1.1); /* gold glow on hover */
}


.lhs-panel-collection-section-clear-btn {
    background-color: #722B05 !important;
    font-size: 16px; /* Larger size */
    color: white;
    border: none;
    padding: 10px;
    margin: 5px 0;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    position: relative;
}

.modal-labels-button {
    float: right;
}


#create-collection-button {
  font-size: 14px;
  grid-column-end: span 1;
  line-height: 1;
  border-radius: 4px;
  text-align: center;
  width: 30px;
  height: 30px;
  justify-self: end;
}

#delete-collection-button {
  font-size: 14px;
  grid-column-end: span 1;
  line-height: 1;
  border-radius: 4px;
  text-align: center;
  width: 30px;
  height: 30px;
  justify-self: start;
}


#popup-confirm-btn {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 10px;
}

#popup-cancel-btn {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}


.export-form-folio-selection-btn {
  background-color: #863B03;
  color: #ffffff;
  width: 150px;
  padding: 12px 24px;
  font-size: 12px;
  border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.export-form-folio-selection-btn:disabled {
  background-color: grey;
  cursor: not-allowed;
}


.highlight-attributes-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.quire_button {
  background-color: #955D30;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 80%;
  text-align: left;
  outline: 3x;
  font-size: 15px;
}

/* Add to existing styles */
.quire_button {
    position: relative; /* Needed for absolute positioning of count */
}









