/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 20px;
}

h3 {
  font-size: 1.75rem;
  margin-top: 10px;
}

ul, ol {
  margin-left: 20px;
}

/* Paragraphs */
p {
  font-family: 'Poppins', Arial, sans-serif; /* Secondary Font */
  font-size: 1rem;
  margin-bottom: 15px;
  color: #333;
}

/* Links */
a {
  color: #8700ff; /* Primary Purple */
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.5;
  transition: opacity 0.3s;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
  text-align: left;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
}

th {
  background-color: #f4f4f4;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #f1f1f1;
}

/* Forms */
input, textarea, select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #8700ff;
  box-shadow: 0 0 5px rgba(135, 0, 255, 0.5); /* Purple Glow */
}

label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

/* Logo Placeholder */
.logo {
  display: block;
  margin: 20px auto;
  max-width: 150px;
  height: auto;
}

/* Navigation Bar */
.navbar {
  background-color: #000; /* Black */
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar a {
  color: #ffA500; /* Orange */
  text-decoration: none;
  margin-left: 15px;
}

.navbar a:hover {
  color: #e69500;
}

/* Cards */
.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px 0;
}

.card-title {
  font-size: 1.5rem;
  color: #8700ff; /* Purple */
  margin-bottom: 10px;
}

.card-content {
  font-family: 'Poppins', Arial, sans-serif;
  color: #333;
}

/* Footer */
footer {
  background-color: #000; /* Black */
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}


/* Manual additions */


.button, a.button {
    cursor: pointer;
    font-size: 16px;
    width: auto; /* Let the width adjust to the content */
    display: inline-flex; /* Ensure it still aligns flexibly */
    align-items: center;
    justify-content: center;
    border-radius: 50vh;
    padding: 10px 16px;
    font-weight: 500;
    transition: opacity 0.3s;
    font-family: 'Poppins', sans-serif;
    border: none;
    outline: none;
}

.button:hover, a.button:hover {
    opacity: 0.5;
    transition: opacity 0.3s;
}


.button-primary, a.button-primary {
    color: white;
    background: #8700ff;
}

.button-primary:hover, a.button-primary:hover {
    color: white;
}

.button-secondary {
    color: #8700ff;
    background: white;
    border: solid #8700ff 2px;
}
