@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Kannada&display=swap');
body {
    font-family: 'Noto Sans Kannada', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
}
.id-card {
    width: 380px;
    border: 4px solid black;
    padding: 15px;
    background: white;
    text-align: center;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.header {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #003366;
}
.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
}
.title {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    background: #8B3E2F;
    color: white;
    padding: 5px;
    border-radius: 5px;
}
.photo-container {
    background: #8B3E2F;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
}
.photo-container img {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
}
.details {
    text-align: left;
    padding: 5px 10px;
    font-size: 14px;
    color: black;
}
.details p {
    margin: 5px 0;
}
.qr-signature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.qr-signature img {
    width: 70px;
    height: 70px;
}
.signature {
    text-align: right;
}
.signature img {
    width: 100px;
}
.sign-name {
    font-size: 14px;
    font-weight: bold;
    color: black;
}
.border-design {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid black;
    box-sizing: border-box;
    pointer-events: none;
}