* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    
    background: linear-gradient(135deg, hsla(253, 87%, 50%, 1) 9%, hsla(197, 100%, 60%, 1) 82%);
}

.pass {
    /* height: 60px; */
    width: 100%;
    background-color: rgb(18, 18, 221);
    display: flex;
    color: rgb(230, 229, 229);
    align-items: center;
    gap: 15px;
    padding: 12px;
}

.pass i {
    color: white;
}

.sorting {
    display: flex;
    width: 100%;
    background-color: white;
    padding: 15px;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.selected {
    color: #0071bc;
}

.sorting h5:hover {
    color: #0071bc;
    cursor: pointer;
}

.transaction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 50px;
    align-items: center;
    /* min-height: 80vh; */
    /* background-color: #f0f0f0; */
}

.transaction>h1 {
    color: #fffcfc;
    margin-bottom: 30px;
}

.passbook {
    background-color: #fff;
    padding: 30px 10px 10px 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    height: 500px;
    overflow-y: auto;
}

h1 {
    text-align: center;
}

.singlecustomer {
    width: 90%;
    height: 80px;
    padding: 15px;
    display: flex;
    align-items: center;
    background-color: #fffcfc;
    border-radius: 10px;
    margin-bottom: 15px;
}

.image_r {
    width: 50px;
    height: 50px;
    border: 1px solid #0071bc;
    border-radius: 50%;
}

.image_r>img {
    width: 50px;
    border-radius: 50%;
}

.customerDetails {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 0 20px;
}

.common>h5 {
    font-weight: bolder;
}

.dollar {
    color: rgb(13, 203, 19);
}