/* Reflection Effect for Panels */
.panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.04) 30%,
            transparent 100%);
    pointer-events: none;
    border-radius: 4px 4px 0 0;
    z-index: 1;
}

/* Enhanced glass reflection on header */
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle reflection on buttons */
.download-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 100%);
    pointer-events: none;
    border-radius: 2px 2px 0 0;
    z-index: 1;
}

.download-btn {
    position: relative;
    overflow: hidden;
}

/* Data cells reflection */
.data-cell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.06) 0%,
            transparent 100%);
    pointer-events: none;
    border-radius: 2px 2px 0 0;
}

.data-cell {
    position: relative;
    overflow: hidden;
}

/* Terminal log reflection */
.terminal-log::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg,
            rgba(0, 217, 255, 0.08) 0%,
            transparent 100%);
    pointer-events: none;
    border-radius: 2px 2px 0 0;
    z-index: 1;
}

.terminal-log {
    position: relative;
}