/**
 * Floaters CSS
 * Based on Wolfstorm's floater styling
 */

:root {
    --floater-bg: rgba(25, 31, 45, 0.95);
    --floater-header: rgba(25, 31, 45, 1);
    --floater-header-focused: rgba(35, 41, 55, 1);
    --floater-border: #2a3548;
    --floater-shadow: rgba(0, 0, 0, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-disabled: #888888;
    --accent-blue: #4a90e2;
    --accent-green: #27ae60;
    --accent-red: #e74c3c;
    --button-hover: rgba(255, 255, 255, 0.1);
}

/* Floater Container */
#floater-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

/* Base Floater */
.llfloater {
    position: absolute;
    background: var(--floater-bg);
    border: 1px solid var(--floater-border);
    border-radius: 6px;
    box-shadow: 0 4px 12px var(--floater-shadow);
    display: none;
    flex-direction: column;
    pointer-events: auto;
    font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
    font-size: 12px;
    color: var(--text-primary);
    overflow: hidden;
    transition: opacity 0.2s ease;
}

.llfloater-visible {
    display: flex !important;
}

.llfloater-dragging {
    opacity: 0.8;
    cursor: move;
}

.llfloater-resizing {
    user-select: none;
}

.llfloater-focused {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.3);
}

.llfloater-minimized {
    height: 32px !important;
    overflow: hidden;
}

.llfloater-maximized {
    border-radius: 0;
}

.llfloater-modal {
    z-index: 10000 !important;
}

/* Floater Header */
.llfloater-header {
    background: var(--floater-header);
    padding: 6px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move;
    user-select: none;
    border-bottom: 1px solid var(--floater-border);
    min-height: 32px;
    flex-shrink: 0;
}

.llfloater-focused .llfloater-header {
    background: var(--floater-header-focused);
}

.llfloater-title {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-primary);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.llfloater-header-buttons {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.llfloater-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 2px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: background 0.2s ease, color 0.2s ease;
}

.llfloater-btn:hover {
    background: var(--button-hover);
    color: var(--text-primary);
}

.llfloater-btn .material-icons {
    font-size: 18px;
}

.llfloater-close-btn:hover {
    background: var(--accent-red);
    color: white;
}

/* Floater Content */
.llfloater-content {
    flex: 1;
    overflow: auto;
    padding: 12px;
    background: var(--floater-bg);
}

/* Resize Handles */
.llfloater-resize-handle {
    position: absolute;
    background: transparent;
    z-index: 100;
    /* Ensure on top of content */
}

.llfloater-resize-n,
.llfloater-resize-s {
    height: 8px;   /* was 4px — an invisible 4px sliver is undiscoverable and hard to hit */
    width: 100%;
    cursor: ns-resize;
}

.llfloater-resize-e,
.llfloater-resize-w {
    width: 8px;    /* was 4px */
    height: 100%;
    cursor: ew-resize;
}

.llfloater-resize-n {
    top: 0;
    left: 0;
}

.llfloater-resize-s {
    bottom: 0;
    left: 0;
}

.llfloater-resize-e {
    top: 0;
    right: 0;
}

.llfloater-resize-w {
    top: 0;
    left: 0;
}

.llfloater-resize-ne,
.llfloater-resize-nw,
.llfloater-resize-se,
.llfloater-resize-sw {
    width: 14px;
    height: 14px;
}

/* A VISIBLE grip in the bottom-right corner (Firestorm floaters show one), so the user
   can actually tell the window resizes — the handles were fully transparent. */
.llfloater-resize-se {
    background:
        linear-gradient(135deg,
            transparent 0 50%,
            rgba(255, 255, 255, 0.28) 50% 57%, transparent 57% 68%,
            rgba(255, 255, 255, 0.28) 68% 75%, transparent 75% 86%,
            rgba(255, 255, 255, 0.28) 86% 93%, transparent 93%);
    border-bottom-right-radius: 6px;
}

.llfloater-resize-ne {
    top: 0;
    right: 0;
    cursor: nesw-resize;
}

.llfloater-resize-nw {
    top: 0;
    left: 0;
    cursor: nwse-resize;
}

.llfloater-resize-se {
    bottom: 0;
    right: 0;
    cursor: nwse-resize;
}

.llfloater-resize-sw {
    bottom: 0;
    left: 0;
    cursor: nesw-resize;
}

/* Tab Container (for floaters with tabs) */
.llfloater-tabs {
    display: flex;
    gap: 2px;
    border-bottom: 1px solid var(--floater-border);
    background: rgba(30, 30, 30, 0.5);
    padding: 4px 8px 0 8px;
}

.llfloater-tab {
    padding: 6px 16px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 12px;
    font-weight: 500;
}

.llfloater-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.llfloater-tab.active {
    background: var(--floater-bg);
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-blue);
}

/* Vertical tab rail (Appearance floater) — active indicator is a left accent bar, not an
   underline, and each tab is a full-width left-aligned pill so long labels never clip. */
.llfloater-tabs-vertical {
    border-bottom: none;
}
.llfloater-tabs-vertical .llfloater-tab {
    border-radius: 4px;
    padding: 7px 10px;
}
.llfloater-tabs-vertical .llfloater-tab.active {
    border-bottom: none;
    border-left: 3px solid var(--accent-blue);
}

.llfloater-tab-content {
    padding: 12px;
    overflow-y: auto;
    flex: 1;
}

/* Form Elements */
.ll-field-group {
    margin-bottom: 12px;
}

.ll-label {
    display: block;
    margin-bottom: 4px;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 500;
}

.ll-input,
.ll-select,
.ll-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #555;
    border-radius: 3px;
    padding: 6px 8px;
    color: var(--text-primary);
    font-size: 12px;
    font-family: inherit;
}

.ll-input:focus,
.ll-select:focus,
.ll-textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(0, 0, 0, 0.4);
}

.ll-input:disabled,
.ll-select:disabled,
.ll-textarea:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ll-textarea {
    resize: vertical;
    min-height: 60px;
}

.ll-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    user-select: none;
}

.ll-checkbox input[type="checkbox"] {
    cursor: pointer;
}

.ll-checkbox label {
    cursor: pointer;
    color: var(--text-primary);
    font-size: 12px;
}

.ll-help-text {
    display: block;
    margin-top: 4px;
    color: var(--text-disabled);
    font-size: 10px;
    font-style: italic;
}

/* Radio Buttons */
.ll-radio {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
    font-size: 11px;
    color: var(--text-primary);
}

.ll-radio input[type="radio"] {
    cursor: pointer;
    margin: 0;
}

/* Radio Button Style (button-like radio) */
.ll-radio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #555;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
    color: var(--text-secondary);
    transition: all 0.15s ease;
}

.ll-radio-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #777;
}

.ll-radio-btn input[type="radio"] {
    display: none;
}

.ll-radio-btn:has(input:checked) {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #fff;
}

/* Small button variant */
.ll-button-small {
    padding: 4px 8px;
    font-size: 11px;
    min-width: 32px;
    justify-content: center;
}

/* Buttons */
.ll-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #666;
    border-radius: 3px;
    padding: 6px 12px;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ll-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #888;
}

.ll-button:active {
    background: rgba(255, 255, 255, 0.05);
}

.ll-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ll-button-primary {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.ll-button-primary:hover {
    background: #5a9ff2;
}

.ll-button-success {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.ll-button-success:hover {
    background: #37be70;
}

.ll-button-danger {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.ll-button-danger:hover {
    background: #f75c4c;
}

.ll-button .material-icons {
    font-size: 16px;
}

/* Button Groups */
.ll-button-group {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

/* List View */
.ll-list-view {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #555;
    border-radius: 3px;
    overflow-y: auto;
    max-height: 300px;
}

.ll-list-item {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.2s ease;
}

.ll-list-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.ll-list-item:active {
    background: rgba(255, 255, 255, 0.1);
}

.ll-list-item.selected {
    background: var(--accent-blue);
}

.ll-list-item:last-child {
    border-bottom: none;
}

/* Tree View (for inventory, etc.) */
.ll-tree-view {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ll-tree-item {
    padding: 4px 8px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s ease;
}

.ll-tree-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.ll-tree-item.selected {
    background: rgba(74, 144, 226, 0.3);
}

.ll-tree-item .material-icons {
    font-size: 16px;
    color: var(--text-secondary);
}

.ll-tree-children {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}

/* Slider */
.ll-slider {
    width: 100%;
    height: 4px;
    background: #555;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.ll-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--accent-blue);
    border-radius: 50%;
    cursor: pointer;
}

.ll-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--accent-blue);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Separator */
.ll-separator {
    height: 1px;
    background: #555;
    margin: 12px 0;
}

/* Panel Header */
.ll-panel-header {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #555;
}

/* Scrollbar Styling */
.llfloater-content::-webkit-scrollbar,
.ll-list-view::-webkit-scrollbar,
.ll-tree-view::-webkit-scrollbar {
    width: 8px;
}

.llfloater-content::-webkit-scrollbar-track,
.ll-list-view::-webkit-scrollbar-track,
.ll-tree-view::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.llfloater-content::-webkit-scrollbar-thumb,
.ll-list-view::-webkit-scrollbar-thumb,
.ll-tree-view::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.llfloater-content::-webkit-scrollbar-thumb:hover,
.ll-list-view::-webkit-scrollbar-thumb:hover,
.ll-tree-view::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.llfloater-visible {
    animation: fadeIn 0.2s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .llfloater {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        border-radius: 0;
    }

    .llfloater-resize-handle {
        display: none;
    }
}

/* Status Message (on login screen) */
.status-message {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    display: none;
}

.status-message.status-info {
    background: var(--accent-blue);
    color: white;
}

.status-message.status-error {
    background: var(--accent-red);
    color: white;
}

.status-message.status-success {
    background: var(--accent-green);
    color: white;
}

/* ============================================
   MOBILE RESPONSIVE FLOATERS
   ============================================ */

@media (max-width: 768px) {
    .llfloater {
        border-radius: 0 !important;
        max-width: 100vw !important;
    }

    .floater-header {
        height: 48px;
        padding: 0 12px;
        touch-action: none;
    }

    .floater-title {
        font-size: 14px;
        font-weight: 500;
    }

    .floater-controls {
        gap: 12px;
    }

    .floater-control {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .floater-body {
        padding: 12px;
        font-size: 14px;
    }

    /* Touch-friendly inputs */
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="number"],
    textarea,
    select {
        min-height: 44px;
        font-size: 16px !important;
        /* Prevents iOS zoom */
        padding: 8px 12px;
        border-radius: 6px;
    }

    /* Touch-friendly buttons */
    button,
    .btn,
    .floater-tab {
        min-height: 44px;
        min-width: 44px;
        font-size: 14px;
        padding: 8px 16px;
        border-radius: 6px;
    }

    /* Scrollable content */
    .floater-scroll-content {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}

@media (max-width: 480px) {
    .floater-header {
        height: 44px;
        padding: 0 10px;
    }

    .floater-title {
        font-size: 13px;
    }

    .floater-controls {
        gap: 8px;
    }

    .floater-control {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .floater-body {
        padding: 10px;
        font-size: 13px;
    }
}


/* ============================================
   ABOUT LAND / REGION INFO - Modern Components
   ============================================ */

/* Tab Bar */
.land-floater-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.land-tabs {
    display: flex;
    gap: 0;
    background: rgba(15, 18, 28, 0.6);
    border-bottom: 2px solid rgba(60, 120, 200, 0.15);
    padding: 0 4px;
    flex-shrink: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.land-tabs::-webkit-scrollbar {
    display: none;
}

.land-tab {
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: #8a95a8;
    cursor: pointer;
    font-size: 11.5px;
    font-weight: 500;
    font-family: inherit;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
}

.land-tab:hover {
    color: #c0c8d8;
}

.land-tab.active {
    color: #6aafff;
}

.land-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 4px;
    right: 4px;
    height: 2px;
    background: #4a90e2;
    border-radius: 1px;
}

/* Tab Content Area */
.land-tab-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.land-tab-content::-webkit-scrollbar {
    width: 6px;
}

.land-tab-content::-webkit-scrollbar-track {
    background: transparent;
}

.land-tab-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

/* Section Cards */
.land-section {
    background: rgba(25, 30, 45, 0.5);
    border: 1px solid rgba(60, 80, 120, 0.2);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
}

.land-section-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #6aafff;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(60, 120, 200, 0.12);
}

.land-section-header .material-icons {
    font-size: 16px;
    opacity: 0.7;
}

/* Info Grid */
.land-info-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.land-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-size: 11.5px;
    min-height: 22px;
}

.land-info-label {
    color: #7a85a0;
    font-weight: 400;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.land-info-value {
    color: #c8d0e0;
    text-align: right;
    word-break: break-word;
    font-weight: 500;
}

.land-info-prominent {
    color: #e0e6f0;
    font-weight: 600;
    font-size: 12.5px;
}

/* Badges */
.land-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.land-badge-owner {
    background: rgba(39, 174, 96, 0.2);
    color: #6ec889;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.land-badge-visitor {
    background: rgba(140, 150, 170, 0.15);
    color: #8a95a8;
    border: 1px solid rgba(140, 150, 170, 0.2);
}

/* Flag Pills */
.land-flags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.land-flag-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10.5px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.land-flag-pill.active {
    background: rgba(74, 144, 226, 0.15);
    color: #7abfff;
    border-color: rgba(74, 144, 226, 0.25);
}

.land-flag-pill.inactive {
    background: rgba(80, 85, 95, 0.15);
    color: #5a6070;
    border-color: rgba(80, 85, 95, 0.15);
}

/* Prim Count Gauge */
.land-prim-gauge {
    margin-bottom: 4px;
}

.land-prim-gauge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: #c0c8d8;
    margin-bottom: 6px;
}

.land-prim-pct {
    font-weight: 600;
    font-size: 12px;
}

.land-prim-bar-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.land-prim-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.4s ease, background 0.3s ease;
}

/* Toggle Rows */
.land-toggles-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.land-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 4px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.land-toggle-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.land-toggle-row[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.land-toggle-label {
    display: flex;
    align-items: center;
    font-size: 11.5px;
    color: #b0b8c8;
}

.land-toggle {
    appearance: none;
    -webkit-appearance: none;
    width: 32px;
    height: 16px;
    background: rgba(80, 90, 110, 0.4);
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.land-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background: #7a85a0;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.land-toggle:checked {
    background: rgba(74, 144, 226, 0.5);
}

.land-toggle:checked::after {
    left: 18px;
    background: #6aafff;
}

.land-toggle:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

/* Form Inputs */
.land-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(80, 100, 140, 0.25);
    border-radius: 4px;
    padding: 6px 8px;
    color: #c8d0e0;
    font-size: 11.5px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.land-input:focus {
    outline: none;
    border-color: rgba(74, 144, 226, 0.5);
    background: rgba(0, 0, 0, 0.35);
}

.land-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.land-media-field {
    margin-bottom: 10px;
}

.land-media-field .land-info-label {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
}

/* Buttons */
.land-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 5px 14px;
    color: #c0c8d8;
    font-size: 11.5px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s ease;
}

.land-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.land-btn-primary {
    background: rgba(74, 144, 226, 0.3);
    border-color: rgba(74, 144, 226, 0.4);
    color: #7abfff;
}

.land-btn-primary:hover {
    background: rgba(74, 144, 226, 0.45);
}

/* Placeholders & Covenant */
.land-covenant-box {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(60, 80, 120, 0.15);
    border-radius: 4px;
    padding: 20px;
    margin-top: 8px;
    min-height: 100px;
}

.land-covenant-placeholder,
.land-list-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #5a6070;
    font-size: 11.5px;
    padding: 16px;
}

.land-list-placeholder {
    background: rgba(0, 0, 0, 0.1);
    border: 1px dashed rgba(60, 80, 120, 0.2);
    border-radius: 4px;
    min-height: 60px;
}

.land-covenant-placeholder p,
.land-list-placeholder p {
    margin: 4px 0 0;
}