﻿html,
body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "slnt" 0;
}

body {
    background: #ffffff;
    background: linear-gradient(0deg, var(--bs-white) 0%, var(--bs-background) 100%);
    min-height: 100vh;
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-button-line {
    flex: 1;
    height: 1px;
    background-color: var(--bs-gray-300);
    margin-left: 2rem;
    margin-right: 1rem;
}

.form-switch-lg .form-check-input {
    width: 2.5em !important;
    height: 1.5em !important;
    margin-top: 0 !important;
    --bs-form-switch-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='white'/></svg>") !important;
}

.vr {
    color: var(--bs-gray-300);
    opacity: 1;
}

.cursor-pointer {
    cursor: pointer;
}

.nav-link.active,
.nav-link.active *,
.nav-link:hover * {
    color: var(--bs-primary) !important;
}

.dropdown-item-body {
    cursor: pointer;
}
}

.spacing-10 {
    border-spacing: 0 10px;
}

.min-height-full-column {
    min-height: auto;
}

.color-swatch {
    transition: all 0.2s ease-in-out;
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.color-swatch.selected {
    box-shadow: 0 0 0 3px rgba(253, 126, 20, 0.3);
}

.draggable-item {
    cursor: move;
    transition: all 0.2s ease;
    touch-action: none;
    user-select: none;
}

.draggable-item:hover {
    background-color: #f8f9fa !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.draggable-item.dragging {
    opacity: 0.5;
    transform: rotate(2deg);
}

.draggable-item.drag-over {
    border-color: #0d6efd !important;
    background-color: #e7f1ff !important;
}

.border-lg-end {
    border-right: none;
}

@media (min-width: 992px) {
    .border-lg-end {
        border-right: 1px solid var(--bs-border-color);
    }

    .min-height-full-column {
        min-height: 89vh;
    }
}