/* style.css - basic web2.0 layout */
*{box-sizing:border-box}
body {
    margin:0;
    font-family:Inter,Arial,Helvetica,sans-serif;
    background:linear-gradient(180deg,#fff5f9,#fff);
    color:#333
}

.topbar {
    background:#fff;
    padding:12px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid rgba(0,0,0,0.05)
}

.menu {
    padding:28px;
    max-width:1100px;
    margin:20px auto
}

.header {
    display:flex;
    align-items:center;
    justify-content:space-between
}

.brand {
    display:flex;
    align-items:center;
    gap:12px
}

.brand img {
    width:56px;
    height:56px;
    border-radius:8px
}

.nav {
    display:flex;
    gap:8px
}

.btn {
    color: #333;
}

.login-wrap {
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
}

.login-card {
    width:380px;
    padding:24px;
    border-radius:14px
}

.login-card h2 {
    margin:0 0 12px;
    color:#e91e63
}

input[type=text],input[type=password] {
    width:100%;
    padding:12px;
    margin:8px 0;
    border-radius:10px;
    border:1px solid #f0b6c9
}

.btn-glossy {
    display:inline-block;
    padding:10px 16px;
    border-radius:10px;
    border:none;
    background:linear-gradient(#ff5ba6,#ff2e84);
    color:#fff;
    font-weight:600;
    cursor:pointer
}

.error {
    background:#ffe6ec;p
    adding:10px;
    border:1px solid #ffb6d0;
    color:#a0003a;
    border-radius:8px;
    margin-bottom:8px
}

.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:16px;
    margin-top:18px
}

.menu-nav ul {  
  list-style-type: none; /* Removes bullet points */
  margin: 0;
  padding: 0;
  overflow: hidden; /* Contains the floated list items */
  background-color: #f8f8f8; /* Light background for the nav bar */
  border-radius: 5px; /* Subtle rounding for the container */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.menu-nav li {
  float: left; /* Makes the items horizontal */
}

.menu-nav li a {
  display: block; /* Makes the entire area clickable */
  color: #333;
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
  font-size: 16px;
  /* Web 2.0 Button Style */
  background-color: #ffb6c1; /* Light pink background */
  background: linear-gradient(to bottom, #ffb6c1, #ff8fa3); /* Glossy gradient */
  border: 1px solid #ff708d;
  border-radius: 5px; /* Rounded corners */
  margin-left: 10px; /* Spacing between buttons */
  margin-right: 10px; /* Spacing between buttons */
  transition: background-color 0.3s, transform 0.2s; /* Smooth transition */
}

.menu-nav li a:hover {
  background-color: #ff8fa3; /* Darker pink on hover */
  background: linear-gradient(to bottom, #ff8fa3, #ffb6c1); /* Inverted gradient for hover effect */
  transform: translateY(-1px); /* Subtle lift on hover */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* More pronounced shadow on hover */
}

.menu-nav li a.active {
  background-color: #ff708d; /* Active/current page color */
  color: white;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); /* Inset shadow for "pressed" look */
}

.display {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;   /* Centers vertically */
}

/* CSS for the Staffs and Payment stuffs */
.container {
    padding:28px;
    /*max-width:1100px;*/
    margin:20px auto;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 24px rgba(16,24,40,0.06);
    border: 1px solid #f0f0f3;
}

.card form div label {
    font-weight: bold;
    
} 

h1 {
    color: #d63384;
    margin-bottom: 8px;
}

.top-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(#ff7ab6, #d63384);
    color: white;
    box-shadow: 0 6px 18px rgba(214,51,132,0.18);
}

.btn-ghost {
    background: transparent;
    color: #333;
    border: 1px solid #e6e6e9;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

th, td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid #f3f3f6;
    font-size: 14px;
}

th {
    text-align: center;
    color: #666;
    font-weight: 600;
}

.actions a, .actions form {
    display: inline-block;
    margin-right: 6px;
}

.badge {
    display: inline-block;
    padding: 6px 8px;
    border-radius: 999px;
    background: #f8f8ff;
    color: #444;
    font-weight: 600;
    font-size: 13px;
}

.alert {
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.alert.error { background: #fff0f0; color: #b00020; border: 1px solid #ffd6d6; }
.alert.success { background: #f0fff6; color: #006b2c; border: 1px solid #bff4d8; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { font-size: 13px; color: #444; display:block; margin-bottom:6px; }
input[type="text"], input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e8e8ee;
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
}
input[type="text"]:focus, input[type="email"]:focus {
    outline: none;
    border-color: #d63384;
    box-shadow: 0 0 0 4px rgba(214,51,132,0.06);
}

.center { text-align: center; }
.muted { color: #888; font-size: 13px; }