.gold-table-container  table td, 
.gold-table-container  table th {
    border: none !important;
}

/* gold-table.css - Dark Theme */
.gold-table-container {
    max-width: 500px;
    margin: 20px auto;
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
    background: #1a1a1a;
    border: 1px solid #404040;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.gold-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffb700, transparent);
    opacity: 0.6;
}

.gold-table-title {
    text-align: center;
    margin: 0 0 25px 0;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.gold-table-table {
    width: 100%;
    border-collapse: unset;
    margin-bottom: 20px;
    border-radius: 8px;
    /* overflow: hidden; */
    border: 1px solid #404040;
}

.gold-table-table th {
    background: linear-gradient(135deg, #333333 0%, #404040 100%);
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: #e0e0e0;
    border-bottom: 2px solid #ffb700;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gold-table-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffb700 0%, #ffd700 50%, #ffb700 100%);
}

.gold-table-table th:first-child {
    width: 28%;
    border-top-left-radius: 8px;
}

.gold-table-table th:nth-child(2),
.gold-table-table th:nth-child(3) {
    width: 24%;
    text-align: center;
}

.gold-table-table th:last-child {
    width: 24%;
    text-align: right;
    border-top-right-radius: 8px;
}

.gold-table-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #404040;
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    transition: all 0.2s ease;
    font-size: 15px;
}

.gold-table-table td.period {
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.gold-table-table td.change,
.gold-table-table td.amount {
    text-align: center;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.gold-table-table td.percentage {
    text-align: right;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.gold-table-table .positive::before {
    color: #00ff88;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.gold-table-table .negative::before {
    color: #ff4757;
    text-shadow: 0 0 8px rgba(255, 71, 87, 0.3);
}

.gold-table-table tbody tr:hover {
    background: linear-gradient(135deg, #363636 0%, #404040 100%);
    transform: translateY(-7px) scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    border-radius: 14px;
}

.gold-table-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.gold-table-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

.gold-table-table tbody tr:last-child td {
    border-bottom: none;
}

.gold-table-footer {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #404040;
    position: relative;
}

.gold-table-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffb700, transparent);
}

.gold-table-footer small {
    color: #888888;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.gold-table-error {
    background: linear-gradient(135deg, #4a1a1a 0%, #3d1a1a 100%);
    color: #ff6b6b;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #662222;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.1);
}

/* Responzívny dizajn */
@media (max-width: 768px) {
    .gold-table-container {
        margin: 15px;
        padding: 0;
        max-width: none;
    }
    
    .gold-table-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .gold-table-table th,
    .gold-table-table td {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .gold-table-table th {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .gold-table-container {
        margin: 10px;
        padding: 15px;
    }
    
    .gold-table-title {
        font-size: 18px;
    }
    
    .gold-table-table th,
    .gold-table-table td {
        padding: 10px 6px;
        font-size: 12px;
    }
    
    .gold-table-table th {
        font-size: 11px;
    }
}

/* Animácie pre loading efekt */
@keyframes shimmer {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.gold-table-container.loading {
    animation: shimmer 2s ease-in-out infinite;
}

/* Gradient border efekt */
.gold-table-container {
    position: relative;
}
/* 
.gold-table-container::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #ffb700, #ffd700, #ffb700);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
} */

.gold-table-container {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);

    width: 100%;
}


@media screen and (min-width: 768px) {
    .gold-table-container {
        animation: gentle-float 2.4s ease-in-out infinite;
        max-width: 90%;
    }

    .gold-table-container:hover {
        animation-play-state: paused;
    }

    @keyframes gentle-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-12px); }
    }
}


.gold-table-title {
    color: #FFD700;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.gold-table-table {
    width: 100%;
    border-collapse: unset;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    /* overflow: hidden; */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.gold-table-table th {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 15px 12px;
    font-weight: 600;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gold-table-table th:first-child {
    border-top-left-radius: 12px;
}

.gold-table-table th:last-child {
    border-top-right-radius: 12px;
}

.gold-table-table td {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* .gold-table-table tr:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
} */

.gold-table-table tr:last-child td {
    border-bottom: none;
}

.period {
    font-weight: 500;
    color: #f0f0f0;
}

.positive {
    color: #00ff88;
    font-weight: 600;
}

.negative {
    color: #ff4757;
    font-weight: 600;
}

.gold-table-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.gold-table-footer small {
    color: #888;
    font-size: 12px;
    font-style: italic;
}

/* Responzívny dizajn */
@media (max-width: 768px) {
    .gold-table-container {
        padding: 20px;
        margin: 0;
    }

    .gold-table-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .gold-table-table th,
    .gold-table-table td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .gold-table-table th {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .gold-table-table th,
    .gold-table-table td {
        padding: 10px 6px;
        font-size: 12px;
    }

    .gold-table-title {
        font-size: 18px;
    }
}

/* Animácie */
/* .gold-table-container {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* Efekt pre pozitívne/negatívne hodnoty */
.positive::before {
    content: "▲ ";
    font-size: 10px;
    opacity: 0.7;
}

.negative::before {
    content: "▼ ";
    font-size: 10px;
    opacity: 0.7;
}


@media (max-width: 780px) {
    #table-row {
        flex-direction: column-reverse !important;
    }
    #goldTableContainer h3 {
        margin-top: 0 !important;
    }
    #panel-8-3-1-0 > .panel-widget-style {
        padding-top: 0 !important;
    }
}