@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Instrument Sans", sans-serif;
  text-decoration: none;
}

/* =====================
   THEME VARIABLES
===================== */

/* Light Mode (default) */
:root {
  --bg-color: #f2f4f6;
  --text-color: #222222;
  --top-bg: #064e3b;
  --top-text: #ffffff;
  --nav-border: #dddddd;
  --link-color: #333333;
}

/* Dark Mode */
body.dark-mode {
  --bg-color: #333;
  --text-color: #e5e7eb;
  --top-bg: #064e3b;
  --top-text: #ffffff;
  --nav-border: #fff;
  --link-color: #e5e7eb;
}

/* =====================
   BASE STYLES
===================== */

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* Top Bar */
.top {
  background-color: var(--top-bg);
  color: var(--top-text);
  text-align: center;
  padding: 10px 0;
  font-size: 1.2em;
}

/* Navigation */
.top_nav {
  border-bottom: 2px solid var(--nav-border);
  padding: 15px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  height: 50px;
  width: 150px;
  background-image: url("../images/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Dark Mode Logo */
body.dark-mode .logo {
  background-image: url("../images/white_logo.png");
}

/* Auth Links */
.auth a {
  text-decoration: none;
  color: var(--link-color);
  margin-left: 15px;
}

/* Toggle Button */
.theme-toggle {
  cursor: pointer;
  border: none;
  color: var(--top-bg);
}

.auth_all {
  padding: 0 40%;
}

.page_all {
  padding: 0 10%;
}

.forms input {
  width: 100%;
  height: 45px;
  padding-left: 5%;
  border-radius: 30px;
}

.forms select {
  width: 100%;
  height: 45px;
  padding-left: 5%;
  border-radius: 30px;
}

.forms {
  margin-top: 20px;
}

.forms h2 {
  text-align: center;
}
.form {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forms input,
.forms select,
.forms textarea {
  width: 100%;
  border: 1.5px solid #ddd;
  padding-left: 3%;
}
.forms input:focus,
.forms select:focus,
.forms textarea:focus {
  outline: none;
}

.forms button {
  height: 45px;
  width: 100%;
  border: none;
  background-color: #064e3b;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
}

.form_link {
  text-align: center;
  margin-top: 15px;
}

.form_links a {
  text-align: center;
  font-weight: bold;
  color: #064e3b;
  text-decoration: none;
}
.form_link a {
  text-decoration: none;
  color: #064e3b;
  font-weight: bold;
}

.dropdown {
  position: relative;
}

/* Style the dropdown button */
.dropbtn {
  color: #333;
  border: none;
  background-color: transparent;
  font-size: 18px;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

/* Links inside dropdown content */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.logo_whole {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.forms p {
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th,
td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
th {
  background: #064e3b;
  color: #fff;
  font-weight: 600;
}
tr:hover {
  background: #f9f9f9;
}

.filters {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.formss input {
  width: 300px;
  height: 40px;
  padding-left: 10px;
  border: 1.5px solid #ddd;
  margin-right: 20px;
}

.formss select {
  width: 300px;
  height: 40px;
  padding-left: 10px;
  border: 1.5px solid #ddd;
  margin-right: 20px;
}


.fors{
  margin-top: 20px;
}

.fors p{
  border: 2px solid #ddd;
   height: 45px;
  width: 100%;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding-left: 3%;
}