body {
    height: 100%;
    min-height: 100vh;
    width: 100%;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

header{
    margin: 0;
    width: 100%;
    padding: 10px 0 20px 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.308);
    flex-shrink: 0;
}
header p{
    margin: 0;
}
header h2{
    margin-top: 0;
}

main {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    width: 100%;
    margin: 0;
    padding: 0 20px;
}

main > h2,
main > input,
main > button {
    flex: 0 0 auto;
}

main h2 {
    margin-left: 0 !important;
}

main input {
    margin-left: 0 !important;
}

.userList{
    display: flex;
    flex: none;
    flex-direction: column;
    width: calc(100% - 20px);
    max-height: calc(100vh - 220px);
    padding: 20px 10px;
    gap: 10px;
    overflow: auto;
    margin: 10px;
}
.user-list-item{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.301);
    padding: 10px 20px 10px 20px;
    border-radius: 7px;
    transition: all 0.5s;
    /* border: 1px solid black ; */
}
.user-list-item:hover{
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.781);
}

.info-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: none;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);

    justify-content: center;
    align-items: center;
}

.info-card{
    position: relative;
    height: 50vh;
    width: 50vw;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 0px 0px 0px 20px ;
}

.closeBt{
      position: absolute;
    top: 10px;
    right: 10px;
    font-size: larger;
}

.info-card .infos{
      display: grid;
    grid-template-columns: auto 1fr; 
    row-gap: 15px;
    column-gap: 10px;   
}

.info-card .infos .key {
    font-weight: bold;
    color: #555;
}

.info-card .infos .value {
    color: #000;
}

.info-card button{
    margin-top: 30px;
}