#global_action_loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    text-align: center;
    padding-top: 40vh;
}

#global_action_loader img {
    width: 100px;
    height: 100px;
}

.sd-img-right .sd-img {
    padding-left: 60px;
    padding-right: 0;
}

.banner-box-asset {
    object-fit: cover;
}

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

#cookies-eu-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111827;
    color: #fff;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-family: system-ui, sans-serif;
    font-size: 16px;
}

a#cookies-eu-more {
    color: #38bdf8;
    text-decoration: underline;
}

#cookie-actions {
    text-align:right;
}

#cookie-actions button {
    background: #38bdf8;
    border: none;
    color: #111827;
    padding: 12px 18px;
    border-radius: 6px;
    margin-left: 8px;
    cursor: pointer;
    font-weight: 600;
}

#cookie-actions button#cookies-eu-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 600px){
    #cookies-eu-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    #cookie-actions {
        margin-top: 8px;
    }
}

.discount-tag {
  position: absolute;
  background-color: rgb(255 124 84) !important;
  bottom: 130px;
  left: 10px;
  padding: 4px;
  font-size: .75rem;
  line-height: 1rem;
}

.discount-tag::after {
  position: absolute;
  right: -0.5625rem;
  bottom: 0;
  height: 0;
  width: 0;
  transform: rotate(180deg) translate(0, 0) skewX(0) skewY(0) scaleX(1) scaleY(1);
  border-top: 12px solid rgb(255 124 84);
  border-bottom: 12px solid rgb(255 124 84);
  border-left: 10px solid transparent;
  content: "";
}

/* --- Magic Table Container --- */
.magic-table-wrapper {
    margin: 2em 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* --- Toggle Navigation --- */
.table-toggle-nav {
    display: flex;
    justify-content: center;
    background: #f8f8f8;
    border-bottom: 1px solid #e1e1e1;
    padding: 10px 0;
    gap: 10px;
}

.table-toggle-nav button {
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.table-toggle-nav button.active {
    background: #000;
    color: #fff;
}

.table-toggle-nav button:hover:not(.active) {
    background: #eeeeee;
}

/* --- Table Styling --- */
.magic-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    table-layout: fixed;
}

/* Header */
.magic-table-wrapper th {
    background-color: #efefef;
    color: #333;
    font-weight: 600;
    padding: 12px 15px;
    text-align: center;
    border-bottom: 2px solid #e1e1e1;
    font-size: 14px;
}

/* Body Rows */
.magic-table-wrapper td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    font-size: 15px;
}

/* The 1st column (Labels) often looks better left-aligned or bold */
.magic-table-wrapper td:first-child {
    font-weight: 700;
    color: #000;
}

/* --- Hover Animation (As seen in video) --- */
.magic-table-wrapper tbody tr {
    transition: background-color 0.2s ease;
}

.magic-table-wrapper tbody tr:hover {
    background-color: #f2f2f2 !important; /* Subtle gray highlight */
    cursor: default;
}

/* Staggered entrance animation class (applied via JS) */
.magic-table-wrapper tr {
    will-change: transform, opacity;
}

/* --- Responsive Layout --- */
@media (max-width: 600px) {
    .magic-table-wrapper {
        overflow-x: auto;
    }
    .table-toggle-nav button {
        padding: 6px 16px;
        font-size: 12px;
    }
}
