/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

 /* Basic table styles */
.table-clean {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.table-clean thead tr {
  background-color: #009879;
  color: #ffffff;
  text-align: left;
}

.table-clean th,
.table-clean td {
  padding: 12px 15px;
}

.table-clean tbody tr {
  border-bottom: 1px solid #dddddd;
}

/* Adding striping to table rows */
.table-clean tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

/* Hover effect for table rows */
.table-clean tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}

.table-clean tbody tr:hover {
  background-color: #f1f1f1;
}

.dropzone {
  border: 2px dashed #0087F7;
  border-radius: 5px;
  background: white;
  padding: 20px;
}

.auth-container {
  max-width: 400px;
  margin: 40px auto;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: white;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h2 {
  color: #003B7B;
  font-size: 24px;
  margin-bottom: 10px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 5px;
  color: #555;
  font-size: 14px;
}

.field input[type="email"],
.field input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.field input[type="checkbox"] {
  margin-right: 5px;
}

.actions {
  margin-top: 25px;
}

.auth-btn {
  width: 100%;
  padding: 12px;
  background-color: #003B7B;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.auth-btn:hover {
  background-color: #002B5B;
}

.auth-links {
  margin-top: 20px;
  text-align: center;
}

.auth-links a {
  color: #003B7B;
  text-decoration: none;
  font-size: 14px;
  margin: 0 10px;
}

.auth-links a:hover {
  text-decoration: underline;
}
