/* style.css */

body {
   background: #00b09b;
  font-family: 'Trebuchet MS', sans-serif;
  margin: 0;
  padding: 20px;
  color: white;
}

.card {
  background: rgba(0, 0, 0, 0.7);
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 40px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

h1, h2, h3 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #f1f1f1;
}

form {
  margin-top: 15px;
  margin-bottom: 25px;
}

input[type="file"], input[type="text"], input[type="password"] {
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
  margin-bottom: 12px;
  box-sizing: border-box;
}

button {
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #555;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  color: #eee;
}

th, td {
  border: 1px solid #444;
  padding: 12px 15px;
  text-align: left;
}

th {
  background-color: #222;
}

a {
  color: #96c93d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.inline {
  display: inline;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  padding: 8px 0;
  border-bottom: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
}

ul li a {
  flex-grow: 1;
  color: #96c93d;
}

.progress-container {
  margin-top: 10px;
}

progress {
  width: 100%;
  height: 22px;
  border-radius: 12px;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  background-color: #444;
  color: #96c93d;
}

progress::-webkit-progress-bar {
  background-color: #444;
  border-radius: 12px;
}

progress::-webkit-progress-value {
  background-color: #96c93d;
  border-radius: 12px;
}

progress::-moz-progress-bar {
  background-color: #96c93d;
  border-radius: 12px;
}

.upload-msg {
  font-weight: bold;
  margin-top: 10px;
  color: #96c93d;
}

.logout {
  margin-top: 30px;
  display: inline-block;
  font-weight: bold;
  color: #f44336;
  text-decoration: underline;
  cursor: pointer;
}

.logout:hover {
  color: #e57373;
}


.container {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  text-align: center;
  
}


.login-form input {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.login-form button {
  padding: 10px;
  background: #00b09b;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-form button:hover {
  background: #008d85;
}

.error {
  color: red;
  font-weight: bold;
  margin-bottom: 15px;
}
.delete-btn {
  background: #d9534f;
  color: white;
  padding: 4px 8px;
  font-size: 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  border: none;           /* Remove border */
  outline: none;          /* Remove outline */
  box-shadow: none;       /* Remove any shadow */
  min-width: 60px;
  vertical-align: middle;
  transition: background-color 0.3s ease;
}

.delete-btn:hover {
  background: #c9302c;
}
.logo-container {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
}

.logo {
  height: 32px;   /* Small icon size */
  width: auto;
}

form input,
form button {
  
  padding: 12px;
  margin: 10px 0;
  font-size: 1rem;
}

img.logo {
  max-width: 100px;
  height: auto;
  display: block;
  margin: 10px auto;
}

@media (max-width: 768px) {
  .card {
    margin: 10px;
    padding: 15px;
  }

  form input,
  form button {
    font-size: 1rem;
    padding: 10px;
  }

  img.logo {
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .card {
    margin: 5px;
    padding: 10px;
  }

  img.logo {
    max-width: 60px;
  }
}

.card {
      background: #1e293b; /* Darker card background */
      padding: 30px 20px;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      text-align: center;
      max-width: 400px;
      
    }

    .card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .card h1 {
      font-size: 24px;
      margin: 10px 0 5px;
      color: #ffffff;
    }

    .card p {
      font-size: 14px;
      color: #cbd5e1;
      margin: 5px 0 20px;
    }

    .card input {
      width: 90%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #334155;
      background-color: #0f172a;
      color: #e2e8f0;
      border-radius: 5px;
      font-size: 14px;
    }

    .card input::placeholder {
      color: #94a3b8;
    }

    .card button {
      background-color: #3b82f6; /* Blue button */
      color: white;
      padding: 10px 20px;
      border: none;
      margin-top: 10px;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
      width: 90%;
    }

    .card button:hover {
      background-color: #2563eb;
    }