/* Copyright (c) 2025 SweetMelanie */

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%);
    position: relative;
    overflow-x: hidden;
}
.galaxy {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.3) 0%, rgba(79, 70, 229, 0.4) 30%, transparent 70%),
                linear-gradient(45deg, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: pulse 12s infinite alternate;
}
@keyframes pulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 0.9; transform: scale(1.03); }
}
.neon-glow {
    text-shadow: 0 0 5px rgba(236, 72, 153, 0.8), 0 0 10px rgba(147, 51, 234, 0.6);
}
.table-container {
    background: rgba(17, 24, 39, 0.85);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4), 0 0 25px rgba(79, 70, 229, 0.3);
}
th, td {
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}
.tick::before {
    content: '✔';
    color: #EC4899;
    text-shadow: 0 0 5px rgba(236, 72, 153, 0.8);
}
.cross::before {
    content: '✖';
    color: #6B7280;
    text-shadow: 0 0 5px rgba(107, 114, 128, 0.5);
}
.name-column {
    width: 60%;
}
.status-column {
    width: 20%;
    text-align: center;
}
.counter-box {
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(147, 51, 234, 0.5);
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
    cursor: pointer;
}
th {
    position: relative;
}
th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, #9333EA, #EC4899);
    opacity: 0.6;
}
tbody tr:hover {
    background: rgba(147, 51, 234, 0.1);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
    transition: all 0.2s ease;
    cursor: pointer;
}
.highlight-rename td:nth-child(2),
.highlight-rename th:nth-child(2) {
    background: rgba(147, 51, 234, 0.1);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
    transition: all 0.2s ease;
}
.highlight-revert td:nth-child(3),
.highlight-revert th:nth-child(3) {
    background: rgba(147, 51, 234, 0.1);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
    transition: all 0.2s ease;
}
.highlight-both td:nth-child(2),
.highlight-both th:nth-child(2),
.highlight-both td:nth-child(3),
.highlight-both th:nth-child(3) {
    background: rgba(147, 51, 234, 0.1);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
    transition: all 0.2s ease;
}


@media (max-width: 640px) {
    .counter-box {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 0.875rem;
    }

    .name-column,
    .status-column {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .text-5xl {
        font-size: 2rem;
    }

    th, td {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .table-container {
        font-size: 0.875rem;
    }
}
