<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Hide the actual input */
input[type="file"] {
  display: none;
}

/* Styled label that looks like a button */
.custom-file-upload {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  background-color: #4f46e5; /* Indigo-600 */
  color: white;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.custom-file-upload:hover {
  background-color: #4338ca; /* Indigo-700 */
}

/* Optional container styling */
.file-upload {
  margin: 20px 0;
}

.styled-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,&lt;svg fill="%234f46e5" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"&gt;&lt;path d="M7 10l5 5 5-5z"/&gt;&lt;/svg&gt;');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
  padding-right: 40px;
  background-color: #ffffff; /* Light background */
  border: 2px solid #d1d5db; /* gray-300 */
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 16px;
  color: #111827; /* gray-900 */
  width: 100%;
  max-width: 300px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.styled-select:focus {
  border-color: #4f46e5;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

body {
  margin: 0;
  padding-top: 6rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #dbdbdb; /* Light gray background */
}

.navbar {
  width: calc(100% - 6rem); 
  margin: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f8f8; /* Light navbar */
  padding: 1rem 2rem;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Lighter shadow */
  position: fixed;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  color: #111827; /* Dark text */
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: #374151; /* Dark gray */
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #2563eb; /* Blue-600 */
}

.navbar ul li:last-child a:hover {
  color: red;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: #111827;
  cursor: pointer;
}

@media (max-width: 980px) {
  .navbar ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #ffffff;
    display: none;
    width: 100%;
    padding: 1rem 0;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar ul.show {
    display: flex;
  }

  .navbar ul li {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    border-radius: 10px;
  }

  .navbar ul li:first-child {
    border-top: none;
  }

  .hamburger {
    display: block;
  }
}

.column {
  float: left;
}

.column2 {
  float: right;
}

/* Clear floats */
.row::after {
  content: "";
  clear: both;
  display: table;
}

/* Button styling in navbar */
.button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #e5e7eb; /* Light gray */
  color: #111827;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.button:hover {
  background: #d1d5db;
}

/* Content box styling */
.content-box {
  margin: 0 1rem;
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 2rem;
  min-height: calc(100vh - 160px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.content-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #1f2937; /* gray-800 */
}

h1, h3 {
  color: #111827;
}

img {
  display: flex;
  justify-content: space-between;
}

input[type="password"] {
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
  font-size: larger;
  background: #ffffff;
  color: #111827;
  border: 1px solid #d1d5db;
}
</pre></body></html>