.table-container {
    position: relative;
    padding: 3px;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    display: inline-block;
}

.table-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, #00a0cb, #008a98, transparent 50%);
    animation: rotateBorder 8s linear infinite;
    z-index: 1;
}

.table-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 3px;
    z-index: 3;
    overflow: hidden;
}

table {
    border-collapse: separate;
    border-spacing: 15px;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}