body{
    font-family: 'Segoe UI', Arial;
    background:#eef2f7;
    margin:0;
}

/* Centered container */
.container{
    max-width:500px;
    margin:60px auto;
    padding:20px;
}

/* Card style */
.card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* Header */
.header{
    text-align:center;
    margin-bottom:20px;
}

.header img{
    height:60px;
    margin-bottom:10px;
}

.header h2{
    margin:0;
    color:#002b5c;
}

/* Inputs */
input, select{
    width:100%;
    padding:12px;
    margin:8px 0;
    border:1px solid #ccc;
    border-radius:6px;
}

/* Button */
button{
    width:100%;
    padding:12px;
    background:#002b5c;
    color:#fff;
    border:none;
    border-radius:6px;
    font-weight:bold;
}

/* Employee card */
.employee-card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    max-width:500px;
    margin:40px auto;
}

.photo{
    width:130px;
    height:130px;
    object-fit:cover;
    border-radius:8px;
    border:3px solid #002b5c;
}

.qr{
    width:100px;
}

.info-row{
    display:flex;
    justify-content:space-between;
    margin:6px 0;
    font-size:14px;
}

.label{
    font-weight:bold;
    color:#333;
}
