@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
:root {
  --color-dark-bg: #333;
  --color-mid-dark-text: #444;
  --color-light-bg: #f1f1f1;
  --color-light-hover: #ddd;
  --color-white: #fff;
  --color-black: #000;
  --color-border: #ccc;
  --color-accent: lightseagreen;
  --color-muted: #666;
  --color-danger: red;
  --color-disabled-bg: #ccc;
  --color-disabled-text: #666;
  --color-dashboard-bg: #f4f7fa;
  --color-heading: #333;
  --color-card-title: #222;
  --color-card-shadow: rgba(0, 0, 0, 0.05);
  --color-card-shadow-hover: rgba(0, 0, 0, 0.1);
  --color-box-shadow: rgba(0, 0, 0, 0.2);
  --color-table-header: lightseagreen;
  --color-table-border: #eee;
  --color-table-row-hover: #f1f8fa;
  --color-link: #0077cc;
  --color-form-bg: #f4f9fb;
  --color-form-shadow: rgba(0, 188, 212, 0.2);
  --color-primary: lightseagreen;
  --color-primary-hover: #0097a7;
}

html {
  scroll-behavior: smooth;
}

.btn {
  text-decoration: none;
  color: white;
  background-color: lightseagreen;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  display: inline-block;
  border: none;
  border-radius: 0.2rem;
}
#submitBtn:disabled {
  background-color: ghostwhite;
  outline: none;
  cursor: not-allowed;
  color: rgb(82, 82, 82);
}
