/* Resetting margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #28a745;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .navbar-img {
    height: 40px;
    width: auto;
}


  footer p {
    margin: 5px 0;
  }
/* Footer Styling */
footer {
  background-color: #343a40;
  color: white;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #444;
  width: 100%;
}

footer a {
  color: #17a2b8;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Form styles */
form {
    margin-top: 20px;
}

form label {
    font-weight: bold;
}

form .form-label {
    margin-bottom: 5px;
}

form .form-control, form .form-select, form .form-check-input {
    margin-bottom: 15px;
}

form .btn-primary {
    background-color: #28a745;
    border-color: #28a745;
}

form .btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}
