* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #f3f0e8;
    color: #1c1a17;
    line-height: 1.45;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px;
}

.room-tools {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    padding: 8px 22px;
    background: #e6e1d6;
    border-bottom: 1px solid rgba(28, 26, 23, 0.16);
    font-size: 0.92rem;
}
.room-tools a {
    color: #1c1a17;
    text-decoration: none;
}
.room-tools a:hover { opacity: 0.55; }

header {
    background: #121110;
    color: white;
    padding: 12px 0;
}

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

header .container > a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

header .container > a img {
    height: 40px;
    margin-right: 15px;
}

header .container > a h1 {
    margin: 0;
}

header h1 {
    font-size: 1.5em;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.95em;
}

/* Compact, information-dense grid */
.remnants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
    gap: 12px;
    margin-top: 15px;
}
.list-status {
    margin: 10px 0 0;
    font-size: 13px;
    color: #6f675c;
}
.load-more-sentinel {
    text-align: center;
    padding: 18px 8px 28px;
    font-size: 13px;
    color: #8a8276;
}

/* Compact card design */
.remnant-card {
    background: #faf8f4;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e0d9cc;
    box-shadow: 0 1px 2px rgba(28, 26, 23, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.remnant-card:hover {
    border-color: #d4cbbd;
    box-shadow: 0 8px 24px rgba(28, 26, 23, 0.08);
}

/* Image wrapper — dealer-style bbox crop when a calibrated shape exists */
.card-image-wrapper {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f0e8;
    border-radius: 3px;
    margin-bottom: 8px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.card-image-wrapper.is-cropped {
    --box-h: 160px;
    height: var(--box-h);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f3f0e8;
}

.card-crop-fit {
    position: relative;
    aspect-ratio: var(--piece-ar, 1);
    width: min(100%, calc(var(--piece-ar, 1) * var(--box-h, 160px)));
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.card-image-clip {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.card-image-wrapper:hover {
    background: #e0d9cc;
}

.card-image-wrapper .card-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.card-image-wrapper.is-cropped .card-image {
    position: absolute;
    max-width: none;
    max-height: none;
    object-fit: fill;
    object-position: top left;
}

.card-image-wrapper.is-cropped .card-image.is-calibrated {
    inset: auto;
}

.card-image-wrapper.is-cropped .card-image.is-bbox-fill {
    inset: 0;
    width: 100%;
    height: 100%;
}

.card-image-wrapper svg.card-poly {
    display: none;
}

.card-image-wrapper svg.defect-overlay,
.lightbox-crop svg.defect-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

.card-image-wrapper svg.defect-overlay polygon,
.card-image-wrapper svg.defect-overlay polyline,
.lightbox-crop svg.defect-overlay polygon,
.lightbox-crop svg.defect-overlay polyline {
    fill: rgba(245, 158, 11, 0.18);
    stroke: #f59e0b;
    stroke-width: 1.15;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 0.8px rgba(28, 26, 23, 0.75));
}

.card-image-wrapper .no-image {
    width: 100%;
    height: 100%;
    background: #ddd6c8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a635a;
    font-size: 0.85em;
}

/* Compact card content */
.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.card-title-section {
    display: flex;
    flex-direction: column;
    margin: 0;
    line-height: 1.2;
    min-height: 0;
}

.card-color {
    font-size: 1em;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: #1c1a17;
    margin-bottom: 0;
    line-height: 1.25;
}

.card-material-brand {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 0.7em;
    margin: 0 0 4px 0;
}

.card-material {
    color: #6a635a;
    font-weight: 400;
}

.card-separator {
    color: #8a8276;
    font-weight: 300;
}

.card-brand {
    color: #7d756b;
    font-weight: 400;
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75em;
    margin: 0 0 4px 0;
    gap: 6px;
}

.card-size {
    font-size: 0.7em;
    color: #8a8276;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.card-slab-id {
    font-size: 0.7em;
    color: #8a8276;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #f3f0e8;
}

.card-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.card-price-col {
    min-width: 0;
    padding-right: 10px;
}

.card-price-col + .card-price-col {
    padding-right: 0;
    padding-left: 10px;
    border-left: 1px solid #e0d9cc;
}

.card-price-col .lbl {
    display: block;
    margin: 0 0 2px;
    font-size: 0.58em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a8276;
    line-height: 1.2;
}

.card-price-col .amt {
    display: block;
    font-size: 1em;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1c1a17;
    font-variant-numeric: tabular-nums;
    line-height: 1.15;
}

.card-price-col.is-alt .amt {
    font-weight: 600;
    color: #5e584f;
}

.card-price {
    font-size: 0.95em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1c1a17;
}

.card-button {
    padding: 7px 12px;
    background: #1c1a17;
    border: 1px solid #1c1a17;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.75em;
    color: #fff;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    font-weight: 600;
    width: 100%;
}

.card-button:hover {
    background: #242220;
    border-color: #242220;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 26, 23, 0.18);
}


.page-header {
    margin: 18px 0 10px;
}

.page-header .page-title {
    margin: 0 0 12px;
}

.category-toggle {
    display: inline-flex;
    align-items: stretch;
    padding: 3px;
    border-radius: 10px;
    border: 1px solid #e0d9cc;
    background: #faf8f4;
    box-shadow: 0 1px 2px rgba(28, 26, 23, 0.04);
    gap: 2px;
}

.category-btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: #6f675c;
    font-size: 0.82em;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 8px 16px;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.category-btn:hover {
    color: #1c1a17;
    background: #f3f0e8;
}

.category-btn.is-active {
    background: #1c1a17;
    color: #fff;
}

.card-meta {
    font-size: 0.72em;
    color: #6f675c;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-top: 2px;
    line-height: 1.3;
}

.card-specs {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    margin: 4px 0 8px;
    padding-top: 4px;
}
.page-title {
    margin: 18px 0 8px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title h1 {
    font-size: 1.65em;
    font-weight: 650;
    letter-spacing: -0.03em;
    color: #1c1a17;
    margin: 0;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px 5px 8px;
    border-radius: 999px;
    border: 1px solid #e0d9cc;
    background: #faf8f4;
    color: #5e584f;
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
    animation: live-pulse 1.8s ease-out infinite;
}

@keyframes live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
        transform: scale(1);
    }
}

.filters {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 15px 0;
    flex-wrap: wrap;
    padding: 16px;
    background: #faf8f4;
    border-radius: 10px;
    border: 1px solid #e0d9cc;
    box-shadow: 0 1px 2px rgba(28, 26, 23, 0.04);
}

.search-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 250px;
}

.search-group input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #d4cbbd;
    border-radius: 6px;
    font-size: 0.9em;
    background: #f7f4ee;
}

.search-group input:focus {
    outline: none;
    border-color: #6f675c;
    background: #faf8f4;
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filters label {
    font-size: 0.85em;
    color: #6f675c;
    white-space: nowrap;
    font-weight: 600;
}

.filters select, .filters button {
    padding: 8px 12px;
    border: 1px solid #d4cbbd;
    border-radius: 6px;
    font-size: 0.9em;
    background: #faf8f4;
    color: #1c1a17;
}

.filters button {
    background: #1c1a17;
    border-color: #1c1a17;
    cursor: pointer;
    color: #fff;
    white-space: nowrap;
    font-weight: 600;
}

.filters button:hover {
    background: #242220;
    border-color: #242220;
}

/* Lightbox Styles */
.lightbox {
    --lb-zoom: 1;
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #121110;
    overflow: auto;
    cursor: pointer;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #f3f0e8;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    z-index: 10000;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.lightbox-close:hover,
.lightbox-close:focus,
.lightbox-close:focus-visible {
    background: transparent;
    color: #fff;
    outline: none;
    box-shadow: none;
}

.lightbox-stage {
    min-height: 100%;
    padding: 0 20px 120px;
    box-sizing: border-box;
}

.lightbox-image {
    display: block;
    margin: 72px auto 0;
    width: calc(min(88vw, 920px) * var(--lb-zoom, 1));
    max-width: none;
    height: auto;
    object-fit: contain;
    cursor: default;
    pointer-events: none;
}

.lightbox-crop {
    display: none;
    width: max-content;
    max-width: none;
    margin: 0 auto;
    padding: 0;
    pointer-events: auto;
    cursor: default;
}

.lightbox-crop.is-open {
    display: block;
    padding: 36px 44px 12px;
}

.lb-piece-wrap {
    position: relative;
    width: calc(min(88vw, 920px) * var(--lb-zoom, 1));
    max-width: none;
    margin: 36px auto 0;
    overflow: visible;
}

.lb-piece {
    position: relative;
    width: 100%;
    aspect-ratio: var(--piece-ar, 1.333);
    overflow: hidden;
    background: transparent;
}

.lb-piece-img {
    position: absolute;
    display: block;
    object-fit: fill;
    object-position: top left;
    max-width: none;
    max-height: none;
}

.lb-piece-img.is-calibrated {
    inset: auto;
}

.lb-piece-img.is-bbox-fill {
    inset: 0;
    width: 100%;
    height: 100%;
}

.lb-piece svg.defect-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.lb-piece svg.defect-overlay polygon,
.lb-piece svg.defect-overlay polyline {
    fill: rgba(245, 158, 11, 0.18);
    stroke: #f59e0b;
    stroke-width: 1.15;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.lightbox-note {
    width: min(88vw, 640px);
    margin: 14px auto 0;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    color: #cfc6b8;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.55;
    text-align: center;
    white-space: pre-wrap;
    cursor: default;
}

.lightbox-note[hidden] {
    display: none;
}

.lightbox-prices {
    width: min(72vw, 360px);
    margin: 16px auto 0;
    cursor: default;
}

.lightbox-prices[hidden] {
    display: none;
}

.lightbox-prices .card-price-col {
    padding-right: 16px;
}

.lightbox-prices .card-price-col + .card-price-col {
    padding-left: 16px;
    border-left-color: rgba(255, 255, 255, 0.16);
}

.lightbox-prices .lbl {
    color: #8a8276;
}

.lightbox-prices .amt {
    color: #f7f4ee;
    font-size: 1.15rem;
}

.lightbox-prices .is-alt .amt {
    color: #d4cbbd;
}

.lightbox-crop .card-image-wrapper,
.lightbox-crop .card-image-wrapper.is-cropped {
    width: 100%;
    height: auto;
    margin: 0;
    background: transparent;
    overflow: visible;
}

.lightbox-crop .card-crop-fit {
    max-height: none;
    width: 100%;
}

.lightbox-zoom {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 10000;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #f3f0e8;
    cursor: default;
}

.lightbox.is-open .lightbox-zoom {
    display: flex;
}

.lightbox-zoom button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #242220;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.lightbox-zoom button:hover {
    background: #3d3933;
}

.lightbox-zoom-label {
    min-width: 48px;
    text-align: center;
    font-size: 12px;
    font-weight: 650;
}

.lightbox-crop,
.lightbox-crop .lb-piece-wrap.is-measuring,
.lightbox-crop .lb-piece.is-measuring,
.lightbox-crop .card-image-wrapper.is-measuring,
.lightbox-crop .card-crop-fit.is-measuring {
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.lightbox-crop .lb-piece-wrap.is-measuring,
.lightbox-crop .card-image-wrapper.is-measuring {
    cursor: none;
    overflow: visible;
}

.measure-overlay,
.measure-labels {
    overflow: visible;
}

.lightbox-crop .card-image-wrapper.is-measuring.is-over-measure {
    cursor: pointer;
}

.lightbox-crop .card-image-wrapper.is-measuring.is-over-measure .measure-cursor {
    display: none;
}

.measure-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    overflow: visible;
}

.measure-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.measure-line {
    stroke: #f7f4ee;
    stroke-width: 2.5;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.7));
}

.measure-line.is-auto {
    stroke: #8a8276;
}

.measure-line.is-pending {
    stroke: #facc15;
    stroke-dasharray: 6 5;
}

.measure-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
}

.measure-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #f7f4ee;
    border: 1px solid #121110;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.measure-dot.is-pending {
    background: #facc15;
}

.measure-labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.measure-label {
    position: absolute;
    transform: translate(-50%, -50%);
    border: 0;
    background: #1c1a17;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    padding: 5px 8px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    pointer-events: auto;
    cursor: pointer;
    white-space: nowrap;
    z-index: 5;
}

.measure-label.is-auto {
    background: #3d3933;
}

.measure-label:hover {
    background: #b91c1c;
}

.measure-label.is-pending {
    background: #ca8a04;
    pointer-events: none;
    cursor: default;
}

.measure-cursor {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 6;
}

.measure-cursor-cross {
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -50%);
}

.measure-cursor-cross::before,
.measure-cursor-cross::after {
    content: '';
    position: absolute;
    background: #f7f4ee;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.55);
}

.measure-cursor-cross::before {
    left: 13px;
    top: 0;
    width: 2px;
    height: 28px;
}

.measure-cursor-cross::after {
    top: 13px;
    left: 0;
    width: 28px;
    height: 2px;
}

.measure-cursor-badge {
    position: absolute;
    left: 0;
    top: 18px;
    transform: translate(-50%, 0);
    background: #242220;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
    white-space: nowrap;
}

.lightbox-measure-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #e6e1d6;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto 24px;
    padding: 8px 14px;
    background: rgba(28, 26, 23, 0.82);
    border-radius: 999px;
    width: fit-content;
    max-width: 90vw;
}

.lightbox-measure-icon {
    display: inline-flex;
    color: #8a8276;
}

/* Admin styles */
table {
    width: 100%;
    background: #faf8f4;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.9em;
}

table th, table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd6c8;
}

table th {
    background: #2a2724;
    color: white;
    font-weight: 600;
}

table tr:hover {
    background: #f7f4ee;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background: #faf8f4;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 50px auto;
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

form label {
    display: block;
    margin: 15px 0;
}

form input, form textarea, form select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd6c8;
    border-radius: 4px;
}

.form-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #faf8f4;
    margin: 10px 0;
    border-radius: 4px;
}

.cart-item button {
    background: #f5a5a5;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.cart-item button:hover {
    background: #e89494;
}

#imagePreview img {
    max-width: 200px;
    margin-top: 10px;
    border-radius: 4px;
}


.dimension-info {
    background: #f3f0e8;
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 8px;
    border-left: 3px solid #1c1a17;
    color: #3d3933;
    font-size: 0.9em;
}
/* Dimension search section - integrated at top of filters */
.dimension-search-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid #e6e1d6;
    margin-bottom: 0px;
}

.dimension-search-section .section-label {
    font-weight: 600;
    font-size: 0.95em;
    color: #2a2724;
    margin: 0;
    white-space: nowrap;
}

.dimension-inputs {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}

.dimension-input-group {
    display: flex;
    gap: 5px;
    align-items: center;
}

.dimension-input-group label {
    font-size: 0.9em;
    margin: 0;
    color: #6a635a;
    white-space: nowrap;
}

.dimension-input-group input[type="number"] {
    width: 95px;
    padding: 6px 10px;
    border: 1px solid #ddd6c8;
    border-radius: 3px;
    font-size: 0.9em;
}

.dimension-input-group input[type="number"]:focus {
    outline: none;
    border-color: #6f675c;
}

.dimension-search-btn,
.dimension-clear-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.2s;
    white-space: nowrap;
}

.dimension-search-btn {
    background: #1c1a17;
    color: white;
}

.dimension-search-btn:hover {
    background: #242220;
}

.dimension-clear-btn {
    background: #8a8276;
    color: white;
}

.dimension-clear-btn:hover {
    background: #777;
}

.filter-divider {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
}
