* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(https://img.freepik.com/free-photo/spectrum-flashes-coloured-light_23-2151792456.jpg) center/cover;
    padding: 20px;
}

main.table {
    width: 82vw;
    height: 90vh;
    background-color: rgba(233, 222, 209, 0.5);
    backdrop-filter: blur(10px);
    text-align: center;
    border-radius: 10px; 
    box-shadow: rgba(240, 46, 170, 0.4) 5px 5px,
        rgba(240, 46, 170, 0.3) 10px 10px,
        rgba(240, 46, 170, 0.2) 15px 15px,
        rgba(240, 46, 170, 0.1) 20px 20px,
        rgba(240, 46, 170, 0.05) 25px 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.head {
    width: 100%;
    height: 10%;
    background-color: rgba(248, 236, 236, 0.579);
    padding: 10px;
    letter-spacing: 1px;
    text-transform: capitalize;
    text-decoration: underline;
    font-style: italic;
    font-weight: 900;
    border-bottom: 1px solid rgb(255, 7, 139);
    display: flex;
    align-items: center;
    justify-content: center;
}

.body {
    width: 94%;
    max-height: 89%;
    background-color: rgba(255, 255, 255, 0.512);
    margin: 0.8rem auto;
    overflow: auto;
}

.body::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}

.body::-webkit-scrollbar-thumb {
    background-color: rgba(220, 20, 60, 0.5);
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 1rem;
    border: 1px solid crimson;
    text-align: center;
}

th {
    background-color: rgba(220, 20, 60, 0.1);
    font-weight: bold;
}

td img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    border: 2px solid rgb(152, 5, 5);
    box-shadow: 0 0 6px rgb(243, 108, 108);
    transition: all 0.3s ease 0.1s;
}

td img:hover {
    transition: all 0.3s ease 0.1s;
    transform: scale(1.3);
    cursor: pointer;
}

td:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 30px;
}

.delever button {
    padding: 8px 16px;
    background-color: #86E49D;
    color: #045d20;
    border-radius: 26px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    transform: scale(1);
}

.delever button:hover {
    background-color: #6bc983;
    transform: scale(1.1);
}

.cancel button {
    padding: 8px 16px;
    background-color: #ea8984ba;
    color: #c51a03;
    border-radius: 26px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    transform: scale(1);
}

.cancel button:hover {
    background-color: #e07570;
    transform: scale(1.1);
}

.pending button {
    padding: 8px 16px;
    background-color: #d4cd70ba;
    color: #9b9802;
    border-radius: 26px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    transform: scale(1);
}

.pending button:hover {
    background-color: #c9c2678e;
    transform: scale(1.1);
}

.can {
    background-color: #f4d0ccc3;
}

.can:hover {
    background-color: #ee776782;
    cursor: pointer;
}

.del:hover {
    background-color: #a3f5bd53;
    cursor: pointer;
}

.pen:hover {
    background-color: #ecea875f;
    cursor: pointer;
}