
  
    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap');

    * {
        box-sizing: border-box;
    }

    body {
        background-color: black;
    }

    body>div {
        width: 100%;
        height: auto;
        display: flex;
        font-family: 'Roboto', sans-serif;
        margin-bottom: 24px;
        margin-top: 24px;
    }

    .table_responsive {
        max-width: 940px;
        border: 1px solid #ae943f;
        background-color: #efefef33;
        padding: 5px;
/*        overflow: auto;*/
        margin: auto;
        margin-top: 50px;
        border-radius: 4px;
        margin-bottom: 10px;
    }






    @media only screen and (max-width: 700px) {
        .table_responsive {
            max-width: 400px;
            border: 1px solid #00bcd4;
            background-color: #efefef33;
            padding: 1px;
            overflow: auto;
            margin: auto;
            margin-top: 20px;
            border-radius: 4px;
            margin-bottom: 10px;
        }


        table th,
        table td {
            border: 1px solid #00000017;
            padding: 10px 15px;
        }

    }


    table {
        width: 100%;
        font-size: 15px;
        color: #ae943f;
        white-space: nowrap;
        border-collapse: collapse;
    }

    table>thead {
        background-color: #800000;
        color: #fff;
        height: 100px;

    }

    table>thead th {
        padding: 45px;
        padding-right: 60px;
        padding-left: 60px;
    }

    table th,
    table td {
        border: 1px solid #00000017;
        padding: 10px 15px;
    }

    table>tbody>tr>td>img {
        display: inline-block;
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #fff;
        box-shadow: 0 2px 6px #0003;
    }

    .action_btn {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .action_btn>a {
        text-decoration: none;
        color: #444;
        background: #fff;
        border: 1px solid;
        display: inline-block;
        padding: 7px 20px;
        font-weight: bold;
        border-radius: 3px;
        transition: 0.3s ease-in-out;
    }

    .action_btn>a:nth-child(1) {
        border-color: #26a69a;
    }

    .action_btn>a:nth-child(2) {
        border-color: orange;
    }

    .action_btn>a:hover {
        box-shadow: 0 3px 8px #0003;
    }

    table>tbody>tr {
        background-color: #fff;
        transition: 0.3s ease-in-out;
    }

    table>tbody>tr:nth-child(even) {
        background-color: rgb(238, 238, 238);
    }

    table>tbody>tr:hover {
        filter: drop-shadow(0px 2px 6px #0002);
    }
