body {
    background-color: white;
}

.map-page-container {
    width: 100% !important; /* Use full width of modal body */
    height: 600px !important; /* Critical: Explicit height prevents 0px height */
    min-height: 300px; /* Prevent collapse on small screens */
    z-index: 1; /* Ensure map controls aren't hidden by modal elements */
}

.map-modal-container {
    width: 100% !important; /* Use full width of modal body */
    height: 400px !important; /* Critical: Explicit height prevents 0px height */
    min-height: 300px; /* Prevent collapse on small screens */
    z-index: 1; /* Ensure map controls aren't hidden by modal elements */
}

.modal-body {
  overflow: visible; /* Default, but confirm it's not overridden */
}

[data-bs-theme=dark] {
    .trix-button-row {
        .trix-button-group {
            border-color: #0f172a;

            .trix-button {
                background-color: #94a3b8;
                border-color: #0f172a;

                &.trix-active {
                    background-color: lighten(#94a3b8, 10%);
                }
            }
        }
    }

    .trix-input {
        background-color: #0f172a;
        border-color: #344155;
    }

    .trix-content {
        background-color: #0f172a;
        border-color: #344155;
    }
}

.trix-button-group.trix-button-group--file-tools {
    display:none;
}

