main {
    display: block;
    justify-content: center;
    width: 100%;
}

.cs_view {
   margin-top: 20px; 
   background: rgb(0, 0, 0, 0.1);
   border-radius: 10px;
   border: 1px solid black;
   align-items: center;
}

.aksi {
    display: flex;
}
td button {
    margin-right: 10px;
    width: 90px;
}
td button::after {
    border: 1px solid black;
}



@keyframes glowgreen {
    0% {
        box-shadow: 0 0 5px rgba(28, 245, 15, 0.3);
        background: rgba(28, 245, 15, 0.3);;
    }
    50% {
        box-shadow: 0 0 20px rgba(28, 245, 15, 1);
        background: rgba(28, 245, 0, 1);
        font-weight: bold;
    }
    100% {
        box-shadow: 0 0 5px rgba(28, 245, 15, 0.3);
        background: rgba(28, 245, 0, 0.3);
    }
}
@keyframes glowblue {
    0% {
        box-shadow: 0 0 5px rgba(3, 200, 255, 0.3);
        background: rgba(3, 200, 255, 0.3);;
    }
    50% {
        box-shadow: 0 0 20px rgba(3, 200, 255, 1);
        background: rgba(3, 200, 255, 1);
        font-weight: bold;
    }
    100% {
        box-shadow: 0 0 5px rgba(3, 200, 255, 0.3);
        background: rgba(3, 200, 255, 0.3);
    }
}
@keyframes glowred {
    0% {
        box-shadow: 0 0 5px rgba(255, 3, 3, 0.3);
        background: rgba(255, 3, 3, 0.3);;
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 3, 3, 1);
        background: rgba(255, 3, 3, 1);
        font-weight: bold;
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 3, 3, 0.3);
        background: rgba(255, 3, 3, 0.3);
    }
}

.green {
    cursor: pointer;
    animation: glowgreen 2s infinite ease-in-out;
}
.green:hover {
    background: black;
}
.blue {
    cursor: pointer;
    animation: glowblue 2s infinite ease-in-out;
}
.red {
    cursor: pointer;
    animation: glowred 2s infinite ease-in-out;
}