* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0f1115;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header {
  margin-bottom: 30px;
}

h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

p {
  color: #aaa;
}

.toolbar {
  margin-bottom: 25px;
}

button {
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: bold;
}

.payments-list {
  display: grid;
  gap: 18px;
}

.payment-card {
  background: #171a21;
  border: 1px solid #2a2f3a;
  border-radius: 18px;
  padding: 22px;
}

.payment-card h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.item span {
  display: block;
  color: #888;
  font-size: 13px;
  margin-bottom: 4px;
}

.item strong {
  font-size: 15px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.approve {
  background: #22c55e;
  color: #08110b;
}

.reject {
  background: #ef4444;
  color: #fff;
}

.view {
  background: #ffffff;
  color: #111;
  text-decoration: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: bold;
}

.empty {
  padding: 30px;
  border: 1px dashed #333;
  border-radius: 16px;
  color: #888;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 7, 12, 0.50),
    rgba(5, 7, 12, 0.35)
  );
  z-index: -1;
}

.payment-card {
  backdrop-filter: blur(18px);
  background: rgba(23, 26, 33, 0.78);
}

.container {
  position: relative;
  z-index: 1;
}

.logo-img {
  width: 240px;
  max-width: 80%;
  display: block;
  margin-bottom: 10px;
}

.admin-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffffff;
}
