@keyframes popUp {
    from {
        transform: translateY(50px); /* Start from off-screen (right) */
        opacity: 0;
    }
    to {
        transform: translateY(0); /* End at original position */
        opacity: 1;
    }
}


/* ID Card Container */
.id-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: top;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    animation: popUp 0.5s ease-out;
}

/* ID Card Details Section */
.id-details {
    max-width: 80%; /* Adjust the width to control space between text and image */
    line-height: 1.6;
}

.id-details h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    text-align: left;
}

.id-details p {
    margin: 5px 0;
    font-size: 1rem;
    color: #000000;
    text-align: left;
}

.id-details a {
    color: #000000;
    text-decoration: underline;
}

/* Profile Picture */
.pic {
    width: 170px;
    height: 190px;
    object-fit: cover;
    object-position: top;
    margin-left: 20px;
    border-radius: 30px;
}

hr{
    border: 1px solid #000000;
}

@media (width < 750px) {
    .id-card {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .id-details h2 {
        margin-bottom: 10px;
        font-size: 1.8rem;
        font-weight: 700;
        color: #000000;
        text-align: center;
    }
    
    .id-details p {
        margin: 5px 0;
        font-size: 1rem;
        color: #000000;
        text-align: left;
    }
}