       /* Style for circular image */
       .circle {
        border-radius: 50%;
        overflow: hidden;
        width: 200px;
        height: 200px;
    }

    .shake {
        animation: shake 0.5s;
        animation-iteration-count: infinite;
    }

    @keyframes shake {
        0% {
            transform: translate(1px, 1px) rotate(0deg);
        }

        10% {
            transform: translate(-1px, -2px) rotate(-1deg);
        }

        20% {
            transform: translate(-3px, 0px) rotate(1deg);
        }

        30% {
            transform: translate(3px, 2px) rotate(0deg);
        }

        40% {
            transform: translate(1px, -1px) rotate(1deg);
        }

        50% {
            transform: translate(-1px, 2px) rotate(-1deg);
        }

        60% {
            transform: translate(-3px, 1px) rotate(0deg);
        }

        70% {
            transform: translate(3px, 1px) rotate(-1deg);
        }

        80% {
            transform: translate(-1px, -1px) rotate(1deg);
        }

        90% {
            transform: translate(1px, 2px) rotate(0deg);
        }

        100% {
            transform: translate(1px, -2px) rotate(-1deg);
        }
    }

    /* Style for image inside circle */
    .circle img {
        width: 100%;
        height: auto;
    }

    /* Style for every table */
    table {
        border-collapse: collapse;
        width: 100%;
        margin-bottom: 1rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
    }

    th,
    td {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    th {
        text-align: inherit;
        background-color: #e9ecef;
        border-bottom: 2px solid #dee2e6;
    }

    tbody tr:nth-of-type(odd) {
        background-color: rgba(101, 147, 44, 0.05);
    }

    tbody tr:hover {
        background-color: rgba(101, 147, 44, 0.1);
    }

    caption {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }