.emp-app{
  max-width:420px;
  margin:20px auto;
  font-family:Arial, sans-serif;
  border:1px solid #ddd;
  border-radius:12px;
  overflow:hidden;
}

.header{
  background:#0d6efd;
  color:#fff;
  padding:15px;
  text-align:center;
  font-size:18px;
}

.content{
  padding:20px;
}

input{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border:1px solid #ccc;
  border-radius:6px;
  font-size:15px;
}

button{
  width:100%;
  padding:12px;
  background:#0d6efd;
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
}

.screen{
  display:none;
}

.screen.active{
  display:block;
}

.logout-btn{
  float:right;
  font-size:14px;
  cursor:pointer;
  color:#fff;
  background:rgba(255,255,255,0.2);
  padding:4px 8px;
  border-radius:4px;
}

/* =========================
   DASHBOARD CARDS
========================= */
.card-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:15px;
}

.card{
  background:#fff;
  border-radius:12px;
  padding:20px 10px;
  text-align:center;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
  cursor:pointer;
  transition:0.2s;
}

.card:hover{
  transform:translateY(-3px);
}

.card .icon{
  font-size:28px;
  margin-bottom:8px;
}

.card .title{
  font-size:14px;
  font-weight:600;
}

/* full width card */
.card.full{
  grid-column: span 2;
}

/* mobile app feel */
.emp-app{
  background:#f4f6f9;
}

textarea{
  width:100%;
  padding:12px;
  border:1px solid #ccc;
  border-radius:6px;
  margin-bottom:12px;
  font-size:14px;
}

/* ===== MODAL ===== */
.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  z-index:9999;
}

.modal-box{
  background:#fff;
  width:90%;
  max-width:400px;
  margin:60px auto;
  border-radius:12px;
  overflow:hidden;
}

.modal-header{
  background:#0d6efd;
  color:#fff;
  padding:12px 15px;
  display:flex;
  justify-content:space-between;
}

.modal-body{
  padding:15px;
}

.modal-body select,
.modal-body input,
.modal-body textarea{
  width:100%;
  padding:10px;
  margin-bottom:10px;
  border:1px solid #ccc;
  border-radius:6px;
}

.close{
  cursor:pointer;
}
