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

body {
  background: #050505;
  color: #e7e7e7;
  font-family: "Segoe UI", Arial, sans-serif;
}


/* =========================================================
   LAYOUT
========================================================= */
.container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

.card {
  width: 1100px;
  background: #101010;
  border: 1px solid #252525;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 0 35px rgba(0, 170, 255, .12);
}


/* =========================================================
   HEADER
========================================================= */
.logo {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  color: #00aaff;
}

.subtitle {
  text-align: center;
  color: #888;
  margin-top: 8px;
  margin-bottom: 35px;
}


/* =========================================================
   FORMULÁRIO
========================================================= */
label {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #bbb;
}

select,
input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #303030;
  background: #060606;
  color: white;
  font-size: 15px;
}

select:focus,
input:focus {
  outline: none;
  border-color: #00aaff;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-top: 28px;
}

.btn-primary {
  flex: 1;
  background: #008cff;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.btn-primary:hover {
  background: #00aaff;
}

.btn-secondary {
  flex: 1;
  text-align: center;
  text-decoration: none;
  background: #303030;
  color: white;
  padding: 14px;
  border-radius: 8px;
}

.btn-secondary:hover {
  background: #444;
}


/* =========================================================
   RESULTADO
========================================================= */
.result-box {
  margin-top: 35px;
  border: 1px solid #2b2b2b;
  background: #070707;
  border-radius: 10px;
  padding: 25px;
  overflow-x: auto;
}

.result-title {
  color: #00aaff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
}

thead th {
  background: #151515;
  color: #00aaff;
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #333;
}

tbody td {
  padding: 10px;
  border-bottom: 1px solid #242424;
  color: #ddd;
}

tbody tr:hover {
  background: #151515;
}

.detail td {
  background: #090909;
  color: #999;
  font-size: 13px;
  padding: 12px;
}

.best {
  color: #00ff88;
  font-weight: bold;
}

.backup {
  color: #ffaa00;
  font-weight: bold;
}

pre {
  white-space: pre-wrap;
  word-break: break-word;
  font-family: Consolas, monospace;
  color: #d5ffd5;
  line-height: 1.55;
}


/* =========================================================
   RODAPÉ
========================================================= */
.footer {
  margin-top: 40px;
  text-align: center;
  color: #666;
  font-size: 13px;
}


/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width: 900px) {
  .card {
    width: 100%;
    padding: 20px;
  }

  .logo {
    font-size: 26px;
  }

  table {
    font-size: 12px;
  }
}
