/* Base toolbar */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  margin: 0 1rem;
  background: var(--surface-color, #1e2a38);
  border: 1px solid var(--border-color, #3a4a5a);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

/* Sections inside */
.toolbar-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex: 0 1 auto;
  min-width: 0;
}

/* Divider */
.toolbar-divider {
  width: 2px;
  height: 2.5rem;
  background: var(--divider-color, #3a4a5a);
  border-radius: 1px;
  margin: 0 0.5rem;
  align-self: stretch;
}

/* Icon buttons */
.icon-btn img,
.zoom-btn img {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}


pc {
    display: none;
}

/* Mobile-only elements (hidden on desktop) */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

/* Fixed zoom controls relative to map-editor */
#zoomControls {
    position: fixed;
    z-index: 100;
    top: 0; /* Will be set by JS */
    left: 0; /* Will be set by JS */
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.map-editor-overlay {
    position: absolute;
    top: 25rem;
    left: 3rem;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}

.map-editor-overlay .zoom-controls {
    pointer-events: auto;
}
.mapmaker-container {
    position: relative;
    padding: 1rem;
    min-height: calc(100vh - 4rem);
    overflow-y: visible;
}

.hamburger {
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: 48px;
    height: 48px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--surface-color);
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: var(--surface-color-hover);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.hamburger::before {
    content: "";
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-color);
    box-shadow: 0 7px 0 var(--text-color), 0 -7px 0 var(--text-color);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.side-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 22%;
    min-width: 16rem;
    max-width: 17rem;
    height: 100vh;
    background: var(--surface-color);
    border-right: 2px solid var(--border-color);
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    padding: 1rem;
    overflow-y: auto;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.side-panel[aria-hidden="false"] {
    transform: translateX(0);
}

.side-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.side-panel-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.side-panel-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content, .center-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
}

.controls-bar {
    display: grid;
    grid-template-columns: 1fr repeat(3, minmax(180px, 280px));
    gap: 1rem;
    align-items: start;
    background: var(--surface-color);
    padding: 1.25rem;
    margin: 0 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.controls-bar > div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.controls-bar > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.controls-bar > div:first-child > *:first-child:not(input) {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color-secondary);
    margin: 0;
}

.controls-bar input[type="text"] {
    height: 44px;
    border-radius: 8px;
    font-size: 0.95rem;
    padding: 0 0.75rem;
    border: 1px solid var(--border-color);
    background-color: var(--surface-color);
    color: var(--text-color);
    transition: border-color 0.2s, background-color 0.2s;
}

.controls-bar input[type="text"]:hover {
    border-color: var(--primary-color);
}

.select-inline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.select-inline label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color-secondary);
    margin: 0;
}

.select-inline select {
    height: 44px;
    border-radius: 8px;
    font-size: 0.95rem;
    padding: 0 0.75rem;
    border: 1px solid var(--border-color);
    background-color: var(--surface-color);
    color: var(--text-color);
    transition: border-color 0.2s, background-color 0.2s;
}

.select-inline select:hover {
    border-color: var(--primary-color);
}

.tool-buttons, .action-buttons, .select-tool-buttons {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 0;
}


.icon-btn, .zoom-btn, .select-btn {
    width: 36px;
    height: 36px;
    padding: 7px;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    background-color: var(--surface-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn img, .zoom-btn img, .select-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1) brightness(150%);
    transition: filter 0.2s;
}

.icon-btn:hover, .zoom-btn:hover, .select-btn:hover {
    background-color: var(--surface-color-hover);
    border-color: var(--primary-color);
}

.icon-btn:hover img, .zoom-btn:hover img, .select-btn:hover img {
    filter: brightness(0) invert(1) brightness(200%);
}

.icon-btn.active, .zoom-btn.active, .select-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.icon-btn.active img, .zoom-btn.active img, .select-btn.active img {
    filter: brightness(0) invert(1) brightness(200%);
}


.select-btn {
    width: 13vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.tiles-section {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 0 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    /* allow children to control scrolling; avoid automatic stretching that prevents overflow */
    min-height: 0;
}

.selections-section {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tiles-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    /* allow this column to shrink so inner selector can scroll */
    flex: 1 1 auto;
    min-height: 0;
}

.tiles-grid h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

.tiles-controls {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem;
    background: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 8px;
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.map-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}


.map-editor {
    position: relative;
    overflow: auto; /* allow scrollbars */
    width: 100%;
    max-height: 95vh;
    min-height: 60vh;
    margin: 0 1rem;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-container {
    position: relative;
    width: fit-content;
    height: fit-content;
    margin: auto; /* let initial centering happen */
}

#mapCanvas {
    display: block;
    image-rendering: pixelated;
}



/* Ensure scrollbars are always visible */
.map-editor::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.map-editor::-webkit-scrollbar-track {
    background: var(--surface-color);
}

.map-editor::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 6px;
    border: 3px solid var(--surface-color);
}

.map-editor::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color);
}

.tool-section {
    margin-bottom: 2rem;
}

.tool-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 0.035rem;
    font-weight: 400;   
}

.select-container {
    margin-bottom: 1rem;
}

.select-container label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color-secondary);
}

.select-container select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    background-color: var(--surface-color);
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
}

.select-container select:hover {
    border-color: var(--primary-color);
}

.select-container select option {
    background-color: var(--surface-color);
    color: var(--text-color);
}


#tileSelector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(52px, max-content));
    gap: 8px;
    padding: 8px;
    background: rgba(255,255,255,0.02);

    border-radius: 8px;
}



.tile-btn {
    padding: 4px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: var(--surface-color);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);

    width: 100%;
    min-width: 52px;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
}


.tile-btn:hover {
    background: var(--surface-color-hover);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.tile-btn.selected {
    border-color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.2);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.3);
}

.tile-btn img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* Hide scrollbar but keep functionality */
#tileSelector::-webkit-scrollbar {
    width: 6px;
}

#tileSelector::-webkit-scrollbar-track {
    background: var(--surface-color);
}

#tileSelector::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* Add styles for checkboxes with red border */
input[type="checkbox"][style*="border-color: rgb(255, 68, 68)"] {
    border-color: #ff4444 !important;
}

.checkbox-container label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.checkbox-container input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.toggle-btn.active {
    background: var(--primary-color);
    color: white;
}

.below-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--surface-color);
    padding: 1.25rem;
    margin: 0 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.save-export-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.save-export-buttons .text-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    min-width: 120px;
}

.map-link {
    text-align: center;
    padding: 0.75rem;
    background: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 8px;
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.map-link span {
    font-weight: 600;
    color: var(--text-color-secondary);
    margin-right: 0.5rem;
}

.link-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.copy-btn {
    width: 32px;
    height: 32px;
    padding: 6px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--surface-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--surface-color-hover);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}


@media (max-width: 900px) {
    .mapmaker-container {
        padding: 0.75rem;
    }

    .hamburger {
        top: 0.75rem;
        left: 0.75rem;
        width: 44px;
        height: 44px;
    }

    .content {
        gap: 1rem;
    }

    .controls-bar {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .tiles-section {
        margin: 0 0.5rem;
    }

    .tiles-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tiles-controls {
        flex-direction: row;
        justify-content: center;
        padding: 0.75rem;
    }

    .map-editor {
        padding: 1rem;
        min-height: 50vh;
        margin: 0 0.5rem;
    }

    .below-map {
        margin: 0 0.5rem;
    }

    .tiles-grid{
        overflow-x: auto;
        max-height: 30vh;
    }

    .save-export-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .save-export-buttons .text-btn {
        width: 100%;
        min-width: unset;
    }

    .link-container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .copy-btn {
        align-self: center;
    }

    .select-btn {
        width: 36px;
        height: 36px;
        padding: 7px;
        border: 1px solid var(--border-color);
        border-radius: 0.25rem;
        background-color: var(--surface-color);
        color: var(--text-color);
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    mob {
        display: none;
    }

    web {
        display: block;
    }
}

.text-btn{
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--surface-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.text-btn:hover {
    background-color: var(--surface-color-hover);
    border-color: var(--primary-color);
}

.text-btn:active {
    outline: 1px solid var(--primary-color);
}

label:has(input[type="checkbox"]) input[type="checkbox"] {
    display: none;
}

label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

label:has(input[type="checkbox"]:checked) {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem;
    background-color: rgba(var(--primary-color-rgb), 0.25);
}

input[type="text"] {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--surface-color);
    color: var(--text-color);
    transition: border-color 0.2s, background-color 0.2s;
}

.selections-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0;
}

.selections-container label {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 8px;
}

label:has(input[type="radio"]) input[type="radio"] {
    display: none;
}

label:has(input[type="radio"]) {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 8px;
    cursor: pointer;
    
}

label:has(input[type="radio"]:checked) {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 8px;
    background-color: rgba(var(--primary-color-rgb), 0.25);
}

.tooltip-floating {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    font-size: 20px;
    color: var(--text-color-secondary);
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: background-color 0.2s, border-color 0.2s;
}

.tooltip-floating:hover {
    background-color: var(--surface-color-hover);
    border-color: var(--primary-color);
}

.tooltip-floating .tooltip-text {
    visibility: hidden;
    opacity: 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    bottom: 120%;
    right: 0;
    white-space: nowrap;
    font-size: 0.85rem;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 1001;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.tooltip-floating .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 12px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip-floating:hover .tooltip-text {
    visibility: visible;
    color: var(--text-color-secondary);
    opacity: 1;
}

/* Keyboard shortcuts tooltip styles */
.shortcuts-tooltip {
    right: 4rem;
}

.disclaimer-tooltip {
    right: 1rem;
    color: var(--text-color);
}

.environments-tooltip {
    right: 7rem;
}

.shortcuts-tooltip img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.shortcuts-text {
    white-space: normal;
    width: 250px;
    text-align: left;
    padding: 12px;
}

.shortcuts-text h4 {
    margin: 0 0 8px 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.shortcuts-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shortcuts-text li {
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shortcuts-text kbd {
    background-color: #444;
    border: 1px solid #666;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 0.8rem;
    font-family: monospace;
    min-width: 20px;
    text-align: center;
}

.environments-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

label[for='correctMirroringBtn'], label[for='hideZoomBtn'] {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--surface-color);
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--surface-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 6px;
    border: 3px solid var(--surface-color);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color);
}


/* Default stays stacked (your current setup) */

/* On wide screens, switch to row layout */
@media (min-width: 1500px) {
  .center-panel {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    height: 70vh;
    gap: 2rem;
    min-height: 0;
  }

  .left-panel,
  .right-panel {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 1rem;
    flex: 0 0 350px; /* fixed side columns */
    min-height: 0;
    height: 100%;
  }

  .right-panel {
    justify-content: space-between;
    align-items: flex-end;
  }


  .map-wrapper {
    flex: 1;
    min-height: 0;
    height: 100%;
    }

    .map-editor {
        max-height: 70vh;
        min-height: 70vh;
        width: calc(100vw - 850px);
        max-width: calc(100vw - 600px);
    }

  /* Toolbar switches to vertical column */
  .toolbar.toolbar-horizontal, .selections-section {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 25px;
    height: 45%;
    width: 95%;
    flex: 0 0 0;
  }

  .toolbar.toolbar-horizontal{
    gap: 13px;
    height: 70%;
    justify-content: flex-start;
  }

  section.selections-section {
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
    margin: 0 1rem;
  }

  .toolbar-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    flex: 0 0 auto;
  }

  .tiles-section {
    flex-direction: column;
    align-items: center;
    width: 95%;
    padding: 25px 15px;
    height: 100%;
    max-height: 100%;
  }

  .tiles-grid {
    width: 100%;
    max-height: max-content;
    height:fit-content;
    padding: 0;
    overflow-y:auto;
  }

  #tilesTitle {
    width: 100%;
    text-align: center;
    margin: 0 0 0 0;
  }

  #tileSelector {
    /* Wide screens: allow normal grid wrapping into rows and let rows
       stretch/stack vertically inside the tiles column. */
    display: grid;
    grid-auto-flow: row; /* normal row flow (wrap into multiple rows) */
    grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
    grid-auto-rows: auto;
    gap: 8px;
    padding: 8px;
    background: rgba(255,255,255,0.02);

    /* vertical behavior: allow the grid to take available height and stretch rows */
    align-content: stretch;   /* let rows expand vertically to fill the container */
    overflow-y: auto;
    overflow-x: hidden;

    /* keep it flexible inside parent containers */
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    min-height: 0;
  }

  .toolbar-divider {
    width: 100%;
    height: 2px;
    margin: 0 0;
  }

  pc {
    display: block;
  }

  web {
    display: none;
  }

  .toolbar-section label.mirror-btn {
    height: min-content;
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  

  .long-btn {
    width: 100%;
    margin-top: 0;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--surface-color);
  }

  .selections-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  .select-btn {
    width: 100%;
  }

  .toolbar.toolbar-horizontal .toolbar-divider {
    width: 100%;
    height: 2px;
    margin: 0.5rem 0;
  }
}