body {
  background-color: #414141;
  color: #000;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #444;
  color: #ff9900;
  padding: 20px;
  text-align: center;
}

form input, form select, form button {
  margin: 5px;
  padding: 8px;
}

/* TABLE BASE */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  color: #ccc;
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 6px;
  overflow: hidden;
}

/* HEADER */
table thead {
  background: #242424;
}

table th {
  padding: 12px;
  text-align: left;
  color: #fff;
  font-weight: bold;
  border-bottom: 2px solid #333;
}

/* ROWS */
table td {
  padding: 10px;
  border-bottom: 1px solid #333;
}

/* HOVER EFFECT */
table tr:hover {
  background: #2a2a2a;
}

/* LINKS */
table a {
  color: #4fc3f7;
  text-decoration: none;
  font-weight: bold;
}

table a:hover {
  text-decoration: underline;
}

/* LAST ROW BORDER FIX */
table tr:last-child td {
  border-bottom: none;
}


a {
  color: blue;
  text-decoration: none;
}


.torrent-info {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
}

.download-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.download-btn:hover {
  background-color: #333;
}

footer {
  color:#000000;
  text-align: center;
}


label {
  display: block;
  font:
    1rem "Fira Sans",
    sans-serif;
}




button {
  color: rgb(128, 0, 0);
  
}


a {
  color:rgb(174, 0, 255)
}

.notepad-btn {
display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.notepad-btn:hover {
  background-color: #ff4b4b;
}

nav {
  text-align: center; /* Center all links inside nav */
}

nav a {
  color: #000000;
  margin: 0 20px; /* Equal spacing left and right */
  text-decoration: none;
  display: inline-block; /* Ensures spacing works properly */
}

nav a:hover {
  color: #ff0000;
}

.nav-button,
.login-container button,
.register-container button,
.new-topic button {
  background: linear-gradient(to right, #ff9900, #ffb84d);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-button:hover,
.login-container button:hover,
.register-container button:hover,
.new-topic button:hover {
  transform: scale(1.05);
  background-color: #ff0000;
}


/* From Uiverse.io by coslac */ 
/* From Uiverse.io by Smit-Prajapati */
.input-container {
  text-align: center;
  display: flex;
  background: white;
  border-radius: 1rem;
  background: linear-gradient(173deg, #23272f 0%, #14161a 100%);
  box-shadow:
    10px 10px 20px #0e1013,
    -10px -10px 40px #383e4b;
  padding: 0.3rem;
  gap: 0.3rem;
}

.input-container input {
  border-radius: 0.8rem;
  background: #23272f;
  box-shadow:
    inset 5px 5px 10px #0e1013,
    inset -5px -5px 10px #383e4b,
    0px 0px 100px rgba(255, 212, 59, 0),
    0px 0px 100px rgba(255, 102, 0, 0);
  width: 100%;
  flex-basis: 100%;
  padding: 1rem;
  border: none;
  border: 1px solid transparent;
  color: white;
  transition: all 0.2s ease-in-out;
}

.input-container input:focus {
  border: 1px solid #ffd43b;
  outline: none;
  box-shadow:
    inset 0px 0px 10px rgba(255, 102, 0, 0.5),
    inset 0px 0px 10px rgba(255, 212, 59, 0.5),
    0px 0px 100px rgba(255, 212, 59, 0.5),
    0px 0px 100px rgba(255, 102, 0, 0.5);
}

@media (max-width: 500px) {
  .input-container {
    flex-direction: column;
  }

  .input-container input {
    border-radius: 0.8rem;
  }
}
