/* ============================================================
   CONTAINER PRINCIPAL E ESTRUTURA GLOBAL
   ============================================================ */
.vkt-auction-wrapper {
    padding: 25px;
    background: #f9f9fb;
    border-radius: 15px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.vkt-header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eaedf2;
    padding-bottom: 15px;
}

.vkt-main-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a2a3a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vkt-stats-pill {
    background: #4a90e2;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.vkt-btn-back {
    text-decoration: none;
    color: #7f8c8d;
    font-size: 13px;
    font-weight: bold;
    transition: color 0.2s;
}

.vkt-btn-back:hover { color: #2c3e50; }

/* ============================================================
   GRID DE LOJAS (INDEX)
   ============================================================ */
.vkt-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.vkt-shop-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e1e4e8;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.vkt-shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #4a90e2;
}

.vkt-card-visual {
    background: #f1f4f7;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vkt-shop-sprite {
    width: 48px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.vkt-sex-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    padding: 4px;
    border-radius: 6px;
    border: 1px solid #ddd;
    width: 40px;
}

.vkt-shop-id {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 11px;
    color: #95a5a6;
    font-family: 'Courier New', monospace;
}

.vkt-card-content {
    padding: 20px;
    flex-grow: 1;
}

.vkt-shop-headline {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    min-height: 45px;
    line-height: 1.4;
}

.vkt-shop-headline a { color: #2c3e50; text-decoration: none; }
.vkt-shop-headline a:hover { color: #4a90e2; }

.vkt-vendor-name {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vkt-location-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vkt-map-tag {
    background: #e8f0fe;
    color: #1967d2;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: bold;
}

.vkt-coords { font-size: 11px; color: #99aab5; font-weight: 600; }

.vkt-card-action {
    padding: 15px 20px;
    background: #fafbfc;
    border-top: 1px solid #f0f2f5;
}

.vkt-btn-view {
    display: block;
    text-align: center;
    background: #4a90e2;
    color: white !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s;
    text-transform: uppercase;
}

.vkt-btn-view:hover { background: #357abd; }

/* ============================================================
   VISUALIZAÇÃO DA LOJA (VIEWSHOP)
   ============================================================ */
.vkt-shop-banner {
    background: linear-gradient(135deg, #1a2a3a 0%, #4a90e2 100%);
    padding: 35px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.vkt-banner-icon {
    width: 64px;
    filter: brightness(0) invert(1);
}

.vkt-banner-text { font-size: 26px; font-weight: 800; margin: 0; }
.vkt-banner-subtext { margin: 8px 0 0; opacity: 0.8; font-size: 14px; }

.vkt-items-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vkt-item-row {
    background: white;
    border-radius: 12px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    border: 1px solid #eef0f2;
    transition: all 0.2s;
}

.vkt-item-row:hover {
    transform: translateX(8px);
    border-color: #4a90e2;
    background: #f8fbff;
}

.vkt-item-visual {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 25px;
    border: 1px solid #eee;
}

.vkt-item-icon { max-width: 36px; max-height: 36px; }

.vkt-item-refine {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.4);
}

.vkt-item-details { flex-grow: 1; }
.vkt-item-link { font-size: 17px; font-weight: 700; color: #2c3e50; text-decoration: none; }
.vkt-item-link:hover { color: #4a90e2; }

.vkt-item-slots { color: #4a90e2; font-weight: 800; margin-left: 6px; font-size: 14px; }

.vkt-item-extra {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.vkt-cards-display { display: flex; flex-wrap: wrap; gap: 6px; }
.vkt-card-mini {
    background: #fdf2f2;
    color: #c0392b;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 11px;
    border: 1px solid #f9dada;
    font-weight: 600;
}
.vkt-card-mini a { color: #c0392b !important; text-decoration: none; }

.vkt-opt-tag {
    font-size: 11px;
    color: #16a085;
    background: #e8f8f5;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 600;
    border: 1px solid #d1f2eb;
}

.vkt-badge-crafted {
    background: #fff3e0;
    color: #e65100;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #ffe0b2;
}

.vkt-item-price-area { text-align: right; min-width: 160px; }
.vkt-price-label { display: block; font-size: 11px; text-transform: uppercase; color: #95a5a6; letter-spacing: 1px; font-weight: 700; margin-bottom: 4px; }
.vkt-price-value { font-size: 20px; font-weight: 900; color: #27ae60; text-shadow: 1px 1px 0px rgba(0,0,0,0.05); }
.vkt-amount-badge { display: inline-block; background: #34495e; padding: 3px 12px; border-radius: 50px; font-size: 11px; color: white; font-weight: 700; margin-top: 8px; }

/* ============================================================
   ESTADOS VAZIOS E PAGINAÇÃO
   ============================================================ */
.vkt-empty-msg {
    text-align: center;
    padding: 60px;
    color: #95a5a6;
    background: white;
    border-radius: 12px;
    font-weight: 600;
    border: 2px dashed #eee;
}

.vkt-pagination-area {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/* Ajustes para Mobile */
@media (max-width: 768px) {
    .vkt-item-row { flex-direction: column; text-align: center; gap: 15px; }
    .vkt-item-visual { margin-right: 0; }
    .vkt-item-price-area { text-align: center; border-top: 1px solid #eee; padding-top: 15px; width: 100%; }
    .vkt-shop-banner { flex-direction: column; text-align: center; }
}

/* ============================================================
   MENU DE SELEÇÃO (INDEX PRINCIPAL)
   ============================================================ */
.vkt-menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vkt-category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    border: 1px solid #e1e4e8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.vkt-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #4a90e2;
}

.vkt-category-visual {
    background: #f8fafd;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #f0f2f5;
}

.vkt-category-img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.vkt-category-card:hover .vkt-category-img {
    transform: scale(1.1) rotate(3deg);
}

.vkt-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #27ae60;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.vkt-category-info {
    padding: 25px;
    text-align: center;
}

.vkt-category-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a2a3a;
    margin: 0 0 10px 0;
}

.vkt-category-desc {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 45px;
}

.vkt-category-action {
    display: inline-block;
    color: #4a90e2;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Secção de Notas */
.vkt-info-section {
    background: #fff;
    border-left: 5px solid #4a90e2;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.vkt-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #34495e;
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 15px;
}

.vkt-info-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: none;
}

.vkt-info-list li {
    font-size: 13px;
    color: #636e72;
    margin-bottom: 8px;
    position: relative;
}

.vkt-info-list li::before {
    content: "•";
    color: #4a90e2;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.vkt-main-icon {
    width: 32px;
    opacity: 0.7;
}

/* Customização para Buying Store */
.vkt-buying-style {
    border-top: 3px solid #27ae60; /* Verde para diferenciar de Vendas (Azul) */
}

.vkt-buying-style:hover {
    border-color: #2ecc71;
}

.vkt-buying-icon {
    filter: hue-rotate(90deg) drop-shadow(0 4px 6px rgba(0,0,0,0.1)); /* Altera levemente a cor do ícone */
}

.vkt-btn-buy {
    background: #27ae60 !important;
}

.vkt-btn-buy:hover {
    background: #219150 !important;
}

.vkt-vendor-name i {
    color: #27ae60;
    margin-right: 5px;
}

/* Customização Viewshop Buying Store */
.vkt-buying-banner {
    background: linear-gradient(135deg, #1b5e20 0%, #2ecc71 100%) !important;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2) !important;
}

.vkt-buying-row:hover {
    border-color: #2ecc71 !important;
    background: #f0fff4 !important;
}

.vkt-buying-price {
    color: #27ae60 !important;
}

.vkt-buying-amount {
    background: #2ecc71 !important;
    color: white !important;
}

.vkt-item-id-badge {
    font-size: 11px;
    background: #eee;
    padding: 2px 6px;
    border-radius: 4px;
    color: #777;
    margin-left: 10px;
    font-family: monospace;
}

.vkt-badge-bound {
    background: #fff3e0;
    color: #e65100;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.vkt-info-text {
    font-size: 11px;
    color: #95a5a6;
    font-style: italic;
}

/* ============================================================
   VOTE FOR POINTS STYLE
   ============================================================ */
.vkt-header-stats {
    display: flex;
    align-items: center;
}

.vkt-points-badge {
    background: #fff;
    border: 2px solid #f1c40f;
    padding: 8px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f39c12;
    font-size: 14px;
    box-shadow: 0 4px 0 #f1c40f;
}

.vkt-mini-icon {
    width: 20px;
}

.vkt-info-bar-mini {
    margin-bottom: 20px;
    font-size: 11px;
    color: #95a5a6;
    text-align: right;
}

/* Vote Cards */
.vkt-vote-card {
    border-top: 4px solid #f1c40f;
}

.vkt-vote-visual {
    height: 120px !important;
    background: #f8f9fa !important;
    overflow: hidden;
}

.vkt-site-banner {
    max-width: 90%;
    max-height: 80%;
    border-radius: 4px;
    transition: transform 0.3s;
}

.vkt-vote-card:hover .vkt-site-banner {
    transform: scale(1.05);
}

.vkt-vote-reward {
    text-align: center;
    margin-bottom: 15px;
}

.vkt-reward-label {
    display: block;
    font-size: 10px;
    color: #bdc3c7;
    font-weight: 800;
    letter-spacing: 1px;
}

.vkt-reward-value {
    font-size: 22px;
    font-weight: 900;
    color: #f39c12;
}

.vkt-vote-timer {
    font-size: 12px;
    color: #7f8c8d;
    display: block;
    text-align: center;
}

.vkt-btn-vote-now {
    background: #f1c40f !important;
    border-bottom: 3px solid #d4ac0d;
}

.vkt-btn-vote-now:hover {
    background: #f39c12 !important;
}

/* Estado Bloqueado */
.vkt-card-disabled {
    filter: grayscale(0.8);
    opacity: 0.8;
}

.vkt-vote-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: rgba(255,255,255,0.7);
}

.vkt-wait-time {
    margin-top: 15px;
    background: #fdf2f2;
    border: 1px solid #f9dada;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 11px;
}

.vkt-wait-time span { display: block; color: #e74c3c; }
.vkt-wait-time strong { color: #c0392b; font-size: 12px; }

.vkt-btn-locked {
    background: #bdc3c7 !important;
    cursor: not-allowed;
}

/* ============================================================
   BAN LOG / JUSTICE STYLE
   ============================================================ */
.vkt-ban-row {
    border-left: 5px solid #c0392b !important;
    background: #fffafa !important;
}

.vkt-ban-row:hover {
    background: #fff5f5 !important;
    border-color: #e74c3c !important;
}

.vkt-ban-visual {
    background: #f2dede !important;
    color: #a94442;
    border: 1px solid #ebccd1 !important;
}

.vkt-ban-main-icon {
    font-size: 24px;
}

.vkt-ban-status-tag {
    position: absolute;
    bottom: -8px;
    background: #c0392b;
    color: white;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
}

.vkt-ban-date {
    font-size: 11px;
    color: #95a5a6;
    margin-left: 15px;
    font-weight: normal;
}

.vkt-ban-reason-box {
    margin-top: 10px;
    background: #ffffff;
    padding: 10px;
    border-radius: 6px;
    border: 1px dashed #fab1a0;
    width: 100%;
}

.vkt-reason-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #e17055;
    margin-bottom: 4px;
}

.vkt-reason-text {
    margin: 0;
    font-style: italic;
    color: #2d3436;
    font-size: 13px;
}

.vkt-ban-info-area {
    min-width: 180px !important;
}

.vkt-ban-duration {
    color: #c0392b !important;
    font-size: 16px !important;
}

.vkt-ban-id {
    background: #dfe6e9 !important;
    color: #636e72 !important;
}

/* Responsividade para Banimentos */
@media (max-width: 768px) {
    .vkt-ban-info-area {
        border-top: 1px solid #f9dada !important;
    }
}

/* ============================================================
   CARD LOG INDEX CUSTOMS
   ============================================================ */
.vkt-log-card {
    border-top: 3px solid #9b59b6; /* Cor Roxa para representar raridade de cartas */
}

.vkt-badge-mvp { background: #e74c3c !important; }   /* Vermelho para MVP */
.vkt-badge-boss { background: #f39c12 !important; }  /* Laranja para Boss */
.vkt-badge-album { background: #3498db !important; } /* Azul para Álbuns */

.vkt-log-notes {
    border-left-color: #9b59b6 !important;
    background: #fbf8ff !important;
}

.vkt-log-card:hover {
    border-color: #8e44ad;
}

.vkt-log-card:hover .vkt-category-action {
    color: #8e44ad;
}

/* Ajuste para ícones de cabeçalho nos logs */
.vkt-main-icon {
    width: 32px;
    height: auto;
    opacity: 0.8;
}

/* ============================================================
   ALBUM CARD LOG - GALLERY STYLE
   ============================================================ */
.vkt-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
}

.vkt-item-card-log {
    border: 1px solid #dcdde1;
    background: #fff;
}

.vkt-card-art-box {
    height: 180px !important;
    background: #2f3640 !important; /* Fundo escuro para destacar a arte da carta */
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vkt-card-illustration {
    max-height: 100%;
    max-width: 100%;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.vkt-item-card-log:hover .vkt-card-illustration {
    transform: scale(1.1) translateY(-5px);
}

.vkt-card-id-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #f1c40f;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    font-family: monospace;
}

.vkt-owner-info {
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.vkt-owner-label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    color: #95a5a6;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.vkt-player-pill {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vkt-class-mini {
    width: 20px;
    height: 20px;
}

.vkt-player-name {
    font-weight: 700;
    color: #2f3640;
    font-size: 13px;
}

.vkt-card-meta {
    font-size: 11px;
    color: #7f8c8d;
    text-align: center;
}

.vkt-source-badge {
    display: block;
    text-align: center;
    background: #3498db;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 5px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* ============================================================
   BOSS/MINI-BOSS CARD LOG STYLE
   ============================================================ */
.vkt-boss-card {
    border-top: 3px solid #f39c12 !important; /* Cor de Mini Boss */
}

.vkt-boss-origin-tag {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    background: rgba(243, 156, 18, 0.9);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 4px;
    text-align: center;
    text-transform: uppercase;
}

.vkt-card-meta-boss {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #7f8c8d;
    padding-top: 10px;
    border-top: 1px solid #f0f2f5;
}

.vkt-id-badge {
    display: block;
    text-align: center;
    color: #95a5a6;
    font-size: 10px;
    font-weight: bold;
}

.vkt-map-note {
    margin-top: 20px;
    font-size: 12px;
    color: #636e72;
}

/* ============================================================
   MVP CARD LOG - LEGENDARY STYLE
   ============================================================ */
.vkt-mvp-card {
    border-top: 3px solid #e74c3c !important; /* Vermelho vibrante para MVPs */
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.1);
}

.vkt-mvp-visual {
    background: radial-gradient(circle, #441010 0%, #1a0505 100%) !important;
}

.vkt-mvp-origin-tag {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    background: rgba(192, 57, 43, 0.95);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 6px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.vkt-mvp-status-badge {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #c0392b, #e74c3c);
    color: white;
    font-size: 10px;
    font-weight: 900;
    padding: 6px;
    border-radius: 4px;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

.vkt-mvp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.2);
    border-color: #ff4757 !important;
}

/* ============================================================
   INSTANCE REWARD LOGS
   ============================================================ */
/* CONTAINER FLAT */
.vkt-flat-list {
    display: flex;
    flex-direction: column;
    gap: 4px; /* Espaço mínimo entre linhas */
}

.vkt-flat-row {
    display: grid;
    grid-template-columns: 70px 50px 1fr 180px 180px;
    align-items: center;
    background: #fff;
    border: 1px solid #e1e8ed;
    padding: 6px 12px;
    transition: all 0.2s;
    border-radius: 4px;
}

.vkt-flat-row:hover {
    background: #f8faff;
    border-color: #3498db;
    transform: translateX(4px);
}

/* DESTAQUE DATA */
.vkt-col-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 2px solid #3498db;
    margin-right: 10px;
}

.vkt-date-hour {
    font-size: 11px;
    color: #7f8c8d;
}

/* ÍCONE COMPACTO */
.vkt-col-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* CONTEÚDO PRINCIPAL */
.vkt-inst-name {
    display: block;
    font-weight: 700;
    color: #34495e;
    font-size: 14px;
}

.vkt-inst-sub {
    font-size: 10px;
    color: #bdc3c7;
    text-transform: uppercase;
}

/* PLAYER */
.vkt-col-player {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vkt-col-player img {
    width: 20px;
    height: 20px;
}

.vkt-p-name {
    font-size: 13px;
    color: #2c3e50;
    font-weight: 600;
}

/* GRUPO DESTAQUE (PADRÃO AUCTION) */
.vkt-col-party {
    background: #2d3436;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    border-left: 3px solid #fab1a0;
}

.vkt-party-label {
    font-size: 8px;
    color: #fab1a0;
    font-weight: 900;
    letter-spacing: 1px;
}

.vkt-party-val {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .vkt-flat-row {
        grid-template-columns: 60px 40px 1fr;
        gap: 10px;
    }
    .vkt-col-party, .vkt-col-player { display: none; }
}

/* ESTRUTURA DE COLUNAS UNIFICADA (Fundamental para o alinhamento) */
.vkt-flat-header, .vkt-flat-row {
    display: grid;
    grid-template-columns: 85px 45px 1fr 180px 220px; /* Larguras exatas */
    align-items: center;
    gap: 12px;
    padding: 6px 15px;
}

/* LEGENDA (CABEÇALHO DA LISTA) */
.vkt-flat-header {
    background: #f1f4f7;
    border-radius: 6px 6px 0 0;
    border-bottom: 2px solid #3498db;
    margin-bottom: 4px;
}

.vkt-flat-header div {
    font-size: 10px;
    font-weight: 800;
    color: #7f8c8d;
    letter-spacing: 0.5px;
}

/* LINHAS DA LISTA */
.vkt-flat-row {
    background: #ffffff;
    border: 1px solid #e9ecef;
    margin-bottom: 2px;
    transition: 0.2s;
}

.vkt-flat-row:hover {
    background: #f8fbff;
    border-color: #3498db;
}

/* COLUNA DATA */
.vkt-col-date {
    border-right: 2px solid #3498db;
    text-align: center;
}

.vkt-date-day {
	display: block;
	font-weight: 600;
	color: #2c3e50;
	font-size: 13px;
}
.vkt-date-hour { font-size: 11px; color: #3498db; font-weight: 600; }

/* ICONE */
.vkt-col-icon img { width: 32px; height: 32px; object-fit: contain; }

/* GRUPO PADRÃO AZUL/BRANCO (AUCTION) */
.vkt-party-blue-box {
    background: #1a2a3a; /* Azul marinho */
    border-left: 3px solid #00d8d6; /* Detalhe azul claro */
    padding: 3px 10px;
    border-radius: 4px;
}

.vkt-party-label-small {
    display: block;
    font-size: 8px;
    color: #00d8d6;
    font-weight: 900;
}

.vkt-party-val-white {
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* TEXTOS */
.vkt-inst-name { font-weight: 700; color: #2d3436; font-size: 13px; }
.vkt-inst-id { font-size: 10px; color: #cbd5e0; margin-left: 5px; }
.vkt-p-name { font-size: 12px; font-weight: 600; color: #4a5568; }
.vkt-col-player img { width: 20px; }
.vkt-col-player { display: flex; align-items: center; gap: 8px; }
.vkt-mini-job { width: 22px; height: 22px; }
.vkt-p-name { font-size: 13px; font-weight: 600; color: #34495e; }

/* NOVO ESTILO DA PARTY (PILL AZUL) */
.vkt-party-pill {
    color: #000;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
	font-weight: 600;
	font-size: 13px;
	color: #2d3436;
}

.vkt-party-pill i {
    color: #00d8d6; /* Ícone em Ciano */
    font-size: 10px;
}

.vkt-party-pill span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* INSTANCIA */
.vkt-inst-name {
	font-weight: 600;
	font-size: 13px;
	color: #2d3436;
}
.vkt-inst-id { font-size: 10px; color: #bdc3c7; margin-left: 6px; }
.vkt-col-icon img { width: 32px; height: 32px; object-fit: contain; }