header{
    font-family: 'Josefin Sans', sans-serif;
}
  
body{
    font-family: 'Josefin Sans', sans-serif;
} 

.user-table{
    background-color: #6B779A;
    color: #fff;
    margin-top: -30px;
    padding-left: 20px;
    padding-right: 20px;
    height: 30px;
}

.user-table-others{
    background-color: #99A2BB;
    color: #fff;
    margin-bottom: 20px;
    border-radius: 0 0 30px 30px;
    padding-left: 20px;
    padding-right: 20px;
    height: 30px;
}

a{
    color: #fff;
}

.body-element{
    width: calc(100% - 40px);
    min-height: calc(100% - 320px);
    height: auto;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);

    padding: 50px 20px;
  }

.dataTable{
    border-collapse: collapse;
    border: 1px solid black;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
    width: 90%;
    margin: 0 auto;
    align-items: center;
}

.box {
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin-bottom: 20px;
    width: calc(33.33% - 20px); /* adjust the width and spacing between boxes */
    position: relative;
    box-sizing: border-box; /* include padding and border in width calculation */
    margin-right: 20px;
}

.box:last-child {
    margin-right: 0;
}

.link-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #485680;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.link-button:hover {
    background-color: #485680;
}