
.id-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.id-card {
    width: 650px;
    border: 2px solid #000;
    padding: 15px;
    background: #fff;
    font-family: sans-serif;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    width: 70px;
    height: auto;
}
.org-details {
    text-align: center;
}
.body {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.info {
    flex: 2;
}
.photo {
    flex: 1;
    text-align: right;
}
.photo img {
    width: 120px;
    height: 140px;
    object-fit: cover;
    border: 2px solid #000;
}
.footer {
    text-align: center;
    margin-top: 15px;
}
.qr {
    width: 100px;
    height: 100px;
}
button {
    margin-top: 10px;
    padding: 8px 16px;
}
