*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

html,body{
  height:100%;
}

body{
  background:#f8fafc;
  color:#1e293b;
  display:flex;
  flex-direction:column;
}

/* HEADER */
header{
  background:linear-gradient(135deg,#3b82f6,#06b6d4);
  padding:15px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{
  color:#fff;
  font-size:20px;
  font-weight:600;
}

.login-btn{
  background:#fff;
  color:#0f172a;
  padding:8px 16px;
  border-radius:25px;
  text-decoration:none;
  font-size:14px;
}
/* Remove default link styles */
.logo-link {
    text-decoration: none; /* underline remove */
    color:  #f4f4f4;         /* parent text color inherit kare */
    display: inline-block;  /* block-like behavior on div */
}

/* Optional: hover effect */
.logo-link:hover .logo {
    color: #ff6600; /* ya jo bhi color chaho hover me */
    cursor: pointer; /* indicate it's clickable */
}


/* MAIN CONTAINER */
.container{
  padding:20px;
  flex:1;
}

/* TABLE */
.table-box{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

table{
  width:100%;
  border-collapse:collapse;
}

th,td{
  padding:12px;
  text-align:center;
}

th{
  background:#e2e8f0;
}

tr:nth-child(even){
  background:#f1f5f9;
}

.status-win{
  color:green;
  font-weight:600;
}

.status-loss{
  color:red;
  font-weight:600;
}


/* MOBILE FIX */
@media(max-width:100%){
  table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }
  th,td{
    font-size:12px;
    padding:8px;
  }
}