/* Synergy Maze AI - Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: #640354;
  font-weight: 700;
}

a {
  color: #640354;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #7a1465;
}

/* Button Styles */
.btn {
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: #640354;
  color: #fff;
}

.btn-primary:hover {
  background-color: #7a1465;
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #333;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #444;
  color: #fff;
}

/* Form Styles */
input,
select,
textarea,
.form-control {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
  outline: none;
  border-color: #640354;
  background-color: #0a0a0a;
  box-shadow: 0 0 0 3px rgba(100, 3, 84, 0.2);
}

input::placeholder,
textarea::placeholder {
  color: #666;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1a1a1a;
}

th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #333;
}

th {
  color: #640354;
  font-weight: 600;
  background-color: #0a0a0a;
}

td {
  color: #ccc;
}

tr:hover {
  background-color: #222;
}

/* Verification Page Styles */
.verification-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 20px;
}

.verification-card {
  text-align: center;
  max-width: 600px;
  width: 100%;
  background-color: #1a1a1a;
  padding: 60px 40px;
  border-radius: 10px;
  border: 1px solid #333;
}

.verification-card h1 {
  color: #640354;
  font-size: 36px;
  margin-bottom: 20px;
}

.verification-card .subtitle {
  color: #888;
  font-size: 16px;
  margin-bottom: 40px;
}

.search-box {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.search-box input {
  flex: 1;
}

.search-box .btn {
  flex-shrink: 0;
}

/* Layout Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .search-box {
    flex-direction: column;
  }

  .verification-card h1 {
    font-size: 28px;
  }

  .verification-card {
    padding: 40px 30px;
  }
}

/* Admin Navigation */
nav {
  background-color: #0a0a0a;
  border-bottom: 2px solid #333;
}

/* Footer */
footer {
  background-color: #0a0a0a;
  border-top: 2px solid #333;
  padding: 20px 0;
  text-align: center;
  color: #888;
  margin-top: 60px;
}