/* Header background color */
/* Sidebar background color */
/* Footer background color */
/* Define text color */
/* Default padding */
.admin-navigation {
  display: flex;
  flex-direction: column;
  background-color: var(--white-color);
  color: var(--main-color);
  font-family: var(--main-font);
  margin-top: 1.250em; }
  .admin-navigation a {
    color: var(--main-color);
    text-decoration: none;
    padding: var(--common-padding);
    margin-bottom: 0.5em;
    font-size: 1.2em; }
    .admin-navigation a:hover {
      color: var(--white-color);
      background-color: var(--main-color);
      transition: background-color 0.3s ease;
      border-radius: 4px; }

body {
  font-family: "Arial, sans-serif";
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #eceff1, #cfd8dc);
  display: grid;
  grid-template-areas: "header header" "aside main" "footer footer";
  grid-template-columns: 0.8fr 3.2fr;
  /* Shrink the sidebar */
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
  /* Adds gaps between sections */
  padding: 1rem; }

/* Main Header Grid-based Styling */
/* Unified Header Style */
.headerStyle {
  grid-area: header;
  /* Attach this area to the appropriate grid placement */
  background: #1e88e5;
  /* Ensure consistent background throughout */
  color: #fff;
  display: flex;
  /* Use flexbox for alignment */
  flex-direction: row;
  /* Stack children vertically */
  align-items: center;
  /* Center-align all children horizontally */
  justify-content: center;
  /* Vertically center children */
  padding: 1.5rem 1rem;
  /* Balance padding */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-height: 140px;
  /* Ensure adequate height */
  /* Responsive behavior for smaller screens */
  /* Logo Section (if required) */
  /* Header Text */ }
  @media (max-width: 768px) {
    .headerStyle {
      flex-direction: column;
      /* Stack all elements */
      padding: 1rem;
      /* Adjust padding */ } }
  @media (max-width: 480px) {
    .headerStyle {
      min-height: 120px;
      /* Shrink height for very small devices */
      padding: 0.8rem;
      /* Compact padding */ } }
  .headerStyle .logo {
    display: flex;
    /* Flex for alignment */
    align-items: center;
    /* Align horizontally */ }
    .headerStyle .logo a {
      text-decoration: none;
      color: #fff; }
      .headerStyle .logo a img {
        width: auto;
        height: 12.5em;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
      .headerStyle .logo a:hover img {
        transform: scale(1.05);
        /* Add hover effect for visibility */
        transition: transform 0.3s ease-in-out; }
    @media (max-width: 768px) {
      .headerStyle .logo {
        display: none; } }
  .headerStyle .header-text {
    max-width: 650px;
    /* Constrain the text container width */
    margin: 0 auto;
    /* Horizontally center content */
    text-align: left;
    /* Adjust text alignment */
    line-height: 1.8;
    /* Space out text lines */
    padding: 1rem; }
    .headerStyle .header-text h1 {
      margin: 0 0 0.5rem;
      /* Add spacing below heading */
      font-size: 2.4rem;
      line-height: 1.2;
      color: #fff;
      font-weight: bold; }
      @media (max-width: 768px) {
        .headerStyle .header-text h1 {
          font-size: 2.2rem;
          /* Adjust for smaller screens */ } }
      @media (max-width: 480px) {
        .headerStyle .header-text h1 {
          font-size: 1.8rem;
          /* Adjust even further for small devices */ } }
    .headerStyle .header-text p {
      margin: 0.4rem 0;
      /* Spacing between paragraphs */
      font-size: 1rem;
      color: #fff;
      line-height: 1.5; }
      @media (max-width: 768px) {
        .headerStyle .header-text p {
          font-size: 0.9rem;
          /* Adjust paragraph size */ } }
      @media (max-width: 480px) {
        .headerStyle .header-text p {
          font-size: 0.8rem;
          /* Compact text */ } }
    @media (max-width: 768px) {
      .headerStyle .header-text {
        max-width: 90%;
        /* Expand width inside smaller grids */
        padding: 0.5rem; } }
    @media (max-width: 480px) {
      .headerStyle .header-text {
        padding: 0.4rem;
        text-align: center;
        /* Center-align text for smallest screens */ } }

.burger-menu {
  display: none; }
  @media (max-width: 768px) {
    .burger-menu {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      background: #1e88e5;
      border-radius: 8px;
      cursor: pointer;
      position: absolute;
      top: 1rem;
      right: 1rem; }
      .burger-menu span {
        width: 25px;
        height: 3px;
        background: #fff;
        position: relative;
        border-radius: 2px; }
        .burger-menu span::before, .burger-menu span::after {
          content: '';
          position: absolute;
          width: 25px;
          height: 3px;
          background: #fff;
          border-radius: 2px;
          transition: transform 0.3s ease; }
        .burger-menu span::before {
          top: -8px; }
        .burger-menu span::after {
          top: 8px; }
      .burger-menu.burger-active span {
        background: transparent; }
        .burger-menu.burger-active span::before {
          transform: rotate(45deg);
          position: absolute; }
        .burger-menu.burger-active span::after {
          transform: rotate(-45deg);
          position: absolute; } }

.burger-menu-nav {
  display: none; }
  .burger-menu-nav.burger-active {
    display: flex;
    flex-direction: column;
    background: #1e88e5;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    padding: 2rem;
    color: #f4f4f4; }
    .burger-menu-nav.burger-active ul {
      list-style: none;
      padding: 0; }
      .burger-menu-nav.burger-active ul li {
        margin: 1.5rem 0; }
        .burger-menu-nav.burger-active ul li a {
          color: #fff;
          text-decoration: none;
          font-size: 1.5rem;
          padding: 0.5rem;
          border-bottom: 2px solid transparent;
          transition: all 0.3s ease; }
          .burger-menu-nav.burger-active ul li a:hover {
            color: #ffffff;
            border-color: #ffffff; }

/* Sidebar styles */
.aside {
  grid-area: aside;
  width: 3.5em;
  padding: 1rem; }
  @media (max-width: 768px) {
    .aside {
      display: none; } }
  .aside nav ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .aside nav ul li {
      margin-bottom: 1.5rem; }
      .aside nav ul li a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3.125rem;
        height: 3.125rem;
        background: #1e88e5;
        color: #f4f4f4;
        text-decoration: none;
        border-radius: 50%;
        transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease; }
        .aside nav ul li a i {
          font-size: 1.5rem; }
        .aside nav ul li a:hover {
          background: #166dba;
          color: #ffffff;
          transform: scale(1.1); }

.rectangle {
  position: fixed;
  display: none;
  background: #004a99;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap; }
  .rectangle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 10px 8px 0;
    border-color: transparent #004a99 transparent transparent; }

.burger-menu {
  display: none;
  /* Responsive design for small screens */ }
  @media (max-width: 768px) {
    .burger-menu {
      display: flex;
      position: fixed;
      top: 1rem;
      left: 1rem;
      width: 40px;
      height: 40px;
      background: #1e88e5;
      color: #fff;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 101;
      border-radius: 8px; }
      .burger-menu span {
        width: 25px;
        height: 3px;
        background: #fff;
        position: relative;
        border-radius: 2px; }
        .burger-menu span::before, .burger-menu span::after {
          content: '';
          width: 25px;
          height: 3px;
          background: #fff;
          position: absolute;
          left: 0;
          border-radius: 2px;
          transition: transform 0.3s ease; }
        .burger-menu span::before {
          top: -8px; }
        .burger-menu span::after {
          top: 8px; }
      .burger-menu.burger-active span {
        background: transparent; }
        .burger-menu.burger-active span::before {
          transform: rotate(45deg) translate(5px, 5px); }
        .burger-menu.burger-active span::after {
          transform: rotate(-45deg) translate(5px, -5px); } }
  @media (max-width: 600px) {
    .burger-menu nav ul {
      flex-direction: column;
      /* Stack navigation items vertically */
      align-items: center;
      /* Center menu items */
      gap: 0.75rem;
      /* Adjust spacing for vertical layout */ }
    .burger-menu nav ul li a {
      display: block;
      /* Ensure links are displayed */ } }

/* Pagination container styles */
.button-container {
  display: flex;
  /* Align buttons horizontally */
  gap: 0.5rem;
  /* Spacing between buttons */
  justify-content: center;
  /* Center the buttons */
  background-color: #fff;
  padding-bottom: 1rem; }
  .button-container .links {
    display: flex;
    /* Flex layout for centering text/icon in button */
    align-items: center;
    justify-content: center;
    width: 40px;
    /* Button width */
    height: 40px;
    /* Button height */
    border-radius: 50%;
    /* Circular buttons */
    background-color: #4caf50;
    color: #fff;
    font-size: 1rem;
    /* Font size for number or icon */
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    transition: all 0.3s ease-in-out;
    /* Smooth transition for effects */
    /* Optional link-specific styles */ }
    .button-container .links:hover {
      background-color: #6ec071;
      /* Slightly lighten on hover */
      transform: translateY(-2px);
      /* Raise button slightly */
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
      /* Enhanced shadow on hover */ }
    .button-container .links:active {
      transform: translateY(0);
      /* Reset position on click */
      box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
      /* Reduced shadow */ }
    .button-container .links:focus {
      outline: 2px solid #3d8b40;
      /* Accessibility focus outline */
      outline-offset: 2px;
      /* Space the outline from the button edge */ }
    .button-container .links p.linkStyle {
      margin: 0;
      color: inherit;
      /* Ensure text inherits button's color */ }

.button-container {
  flex-wrap: wrap;
  /* Allow pagination buttons to wrap on small screens */
  gap: 0.75rem;
  /* Adjust gap for tighter spacing */ }

.button-container .links {
  width: 50px;
  /* Increase button size slightly for smaller screens */
  height: 50px;
  font-size: 1.2rem;
  /* Scale up font size for readability */ }

.registration_content {
  grid-area: main;
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem; }
  @media (max-width: 768px) {
    .registration_content {
      padding: 1rem; } }
  @media (max-width: 480px) {
    .registration_content {
      padding: 0.5rem; } }
  .registration_content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #4caf50, #1e88e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease; }
    @media (max-width: 768px) {
      .registration_content h2 {
        font-size: 2rem; } }
    @media (max-width: 480px) {
      .registration_content h2 {
        font-size: 1.5rem; } }
    .registration_content h2:hover {
      text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
      transform: scale(1.05); }
  .registration_content .form .form-group {
    margin-bottom: 1.5rem; }
    .registration_content .form .form-group label {
      display: block;
      font-weight: bold;
      margin-bottom: 0.5rem;
      color: #4caf50; }
      @media (max-width: 480px) {
        .registration_content .form .form-group label {
          font-size: 0.8rem; } }
    .registration_content .form .form-group input {
      width: 92%;
      padding: 0.75rem;
      border: 1px solid #ddd;
      border-radius: 4px; }
      .registration_content .form .form-group input:focus {
        border-color: #4caf50;
        outline: none; }
  .registration_content .form .btn {
    display: block;
    width: 50%;
    margin: 1rem auto;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #4caf50, #1e88e5);
    border: none;
    border-radius: 8px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease; }
    @media (max-width: 480px) {
      .registration_content .form .btn {
        width: 100%;
        font-size: 1rem; } }
    .registration_content .form .btn:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, #3d8b40, #166dba);
      box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.6); }
    .registration_content .form .btn:active {
      transform: translateY(0);
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), -2px -2px 4px rgba(255, 255, 255, 0.4); }

.product-container {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr;
  /* Make the Left column smaller and Right wider */
  gap: 2rem;
  background-color: #fff;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* PDF Container: Right Column */ }
  .product-container h1 {
    display: none;
    grid-column: 1 / -1;
    /* Full-width heading */
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
  .product-container .article {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd; }
    .product-container .article p {
      content: '\A';
      white-space: pre;
      overflow: auto; }
  .product-container .pdf-container {
    grid-column: 2 / 3;
    /* Right column */
    display: flex;
    flex-direction: column;
    /* Stack PDFs vertically */
    gap: 1rem;
    max-height: calc(100vh - 100px); }
  .product-container iframe {
    width: 100%;
    height: 600px;
    /* Adjust as necessary for PDF size */
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
  .product-container .imageStyle {
    display: block;
    width: 100%;
    /* Fit container width */
    height: auto;
    /* Maintain aspect ratio */
    object-fit: cover;
    /* Crop excess but maintain proportions */
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
  .product-container h2.articleHeading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 1rem; }
  .product-container p.articleText {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 1.5rem; }

/* Responsive Design */
@media screen and (max-width: 768px) {
  body {
    grid-template-columns: 1fr;
    /* Sidebar goes full-width on smaller screens */ }

  .sidebar {
    order: -1;
    /* Display sidebar above main content */ }

  .content {
    grid-template-columns: 1fr;
    /* Content becomes a single column */
    grid-template-rows: auto auto;
    /* Stack rows */ }

  .content .pdf-container {
    max-height: none;
    /* Remove height restrictions for small viewports */
    padding-left: 0;
    /* Align PDFs flush with the content */
    border-left: none;
    /* Remove the divider for mobile */ }

  iframe {
    height: 400px;
    /* Adjust PDF height for smaller screens */ }

  h1 {
    font-size: 2rem;
    /* Resize heading */ } }
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.8rem; }

  h2.articleHeading {
    font-size: 1.3rem; }

  p.articleText {
    font-size: 0.9rem; }

  .sidebar nav ul li a.linkStyle {
    font-size: 0.875rem;
    /* Slightly smaller for mobile */ }

  iframe {
    height: 300px;
    /* Further reduce PDF height on very small screens */ } }
.footer {
  grid-area: footer;
  background: #1e88e5;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  color: #fff; }
  .footer p {
    margin: 0;
    font-size: 0.9rem; }

/* Responsive Design */
@media (max-width: 768px) {
  body {
    grid-template-areas: "header" "main" "aside" "footer";
    grid-template-columns: 1fr;
    /* Single-column layout */
    grid-template-rows: auto auto auto auto;
    /* Stacked sections */
    max-width: 100%;
    /* Full-width on tablets */
    padding: 0.5rem;
    /* Reduced padding */ }

  .sidebar {
    padding: 0.5rem; }
    .sidebar nav ul li a.linkStyle {
      font-size: 0.8rem;
      /* Adjust link size */
      padding: 0.5rem;
      /* Reduced padding for links */ }

  .content {
    grid-template-columns: 1fr;
    /* Single-column layout for content */
    gap: 1rem; }
    .content .article-container, .content .pdf-container {
      grid-column: 1 / -1;
      /* Full width on smaller screens */
      overflow-y: unset;
      /* Remove overflow */ }
    .content iframe {
      height: 300px;
      /* Reduce height of iframes */ } }
@media (max-width: 480px) {
  body {
    grid-template-areas: "header" "aside" "main" "footer";
    grid-template-columns: 1fr;
    /* Single-column layout */
    max-width: 100%;
    padding: 0.5rem; }

  .sidebar {
    grid-area: aside; }

  .content {
    padding: 0.5rem; }
    .content h1 {
      font-size: 1.8rem;
      /* Reduce header size further */ }
    .content .article-container, .content .pdf-container {
      padding: 0.5rem; }
    .content iframe {
      height: 200px;
      /* Further reduce iframe height */ }

  .imageStyle {
    margin-top: 0.5rem; } }
/* CSS to control PDF rendering */
/* Default: Show iframe, hide download link */
.pdf-viewer {
  display: block; }

.pdf-download-link {
  display: none; }

/* For smaller screens: Hide iframe, show download link */
@media screen and (max-width: 768px) {
  .pdf-viewer {
    display: none; }

  .pdf-download-link {
    display: inline-block !important;
    margin-top: 10px;
    text-decoration: none;
    color: blue;
    font-size: 16px; }

  .pdf-download-link:hover {
    text-decoration: underline; } }
.security-management {
  grid-area: main;
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #333333; }
  .security-management h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #4caf50;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); }
    @media (max-width: 768px) {
      .security-management h2 {
        font-size: 2rem;
        margin-bottom: 1rem; } }
    @media (max-width: 480px) {
      .security-management h2 {
        font-size: 1.75rem; } }
  .security-management .table-wrapper {
    overflow-x: auto;
    /* Horizontal scrolling for smaller screens */
    border-radius: 8px; }
    .security-management .table-wrapper table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 600px;
      /* Ensure table has enough space */ }
      .security-management .table-wrapper table thead {
        background: #1e88e5;
        color: #fff; }
        .security-management .table-wrapper table thead th {
          padding: 0.75rem;
          font-size: 1rem;
          border-bottom: 2px solid #4ca0ea;
          text-transform: uppercase; }
      .security-management .table-wrapper table tbody tr:nth-child(even) {
        background: white; }
      .security-management .table-wrapper table tbody tr:hover {
        background: #b5dfb7;
        color: #333333; }
      .security-management .table-wrapper table tbody td {
        padding: 0.75rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #f4f4f4; }
        .security-management .table-wrapper table tbody td:last-child {
          text-align: center; }
  .security-management .form-wrapper {
    text-align: center; }
    .security-management .form-wrapper select {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border: 1px solid #b5dfb7;
      border-radius: 8px;
      margin-right: 1rem;
      transition: all 0.3s ease-in-out; }
      .security-management .form-wrapper select:focus {
        border-color: #4caf50;
        outline: none;
        box-shadow: 0 0 4px rgba(76, 175, 80, 0.5); }
    .security-management .form-wrapper button {
      padding: 0.6rem 1.2rem;
      font-size: 1rem;
      font-weight: bold;
      background: #4caf50;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease-in-out; }
      .security-management .form-wrapper button:hover {
        background: #6ec071;
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
      .security-management .form-wrapper button:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
      .security-management .form-wrapper button:focus {
        outline: 2px solid #3d8b40;
        outline-offset: 2px; }
  .security-management .message {
    margin: 1rem auto;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem; }
    .security-management .message.success {
      background: #fcfefc;
      color: #2d682f;
      border: 2px solid #3d8b40; }
    .security-management .message.error {
      background: white;
      color: #10538d;
      border: 2px solid #166dba; }
  @media (max-width: 768px) {
    .security-management {
      padding: 1rem; }
      .security-management .table-wrapper table {
        font-size: 0.85rem;
        /* Adjust font size */ }
      .security-management .form-wrapper select {
        width: 100%;
        margin-bottom: 1rem;
        /* Stack select and button */ }
      .security-management .form-wrapper button {
        width: 100%; } }
  @media (max-width: 480px) {
    .security-management .form-wrapper select {
      font-size: 0.9rem;
      padding: 0.4rem; }
    .security-management .form-wrapper button {
      font-size: 0.9rem;
      padding: 0.5rem; } }

.main-content {
  grid-area: main;
  background: #f4f4f4;
  color: #333333;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem; }
  .main-content h2 {
    color: #4caf50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #92cf94;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .main-content p {
    font-size: 1rem;
    margin-bottom: 1rem; }
    .main-content p.message {
      color: #4caf50;
      background: #fcfefc;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      font-weight: bold;
      border: 1px solid #3d8b40; }
    .main-content p.error {
      color: #d32f2f;
      /* Strong red for error text */
      background: #fdecea;
      /* Light red background */
      padding: 0.5rem 1rem;
      border-radius: 8px;
      font-weight: bold;
      border: 1px solid #d32f2f; }
  .main-content ul {
    list-style: none;
    padding: 0; }
    .main-content ul li {
      margin: 0.5rem 0;
      padding: 0.5rem;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px; }
      .main-content ul li a {
        text-decoration: none;
        color: #4caf50;
        font-weight: bold; }
        .main-content ul li a:hover {
          text-decoration: underline;
          color: #3d8b40; }
  .main-content form {
    margin-bottom: 2rem; }
    .main-content form label {
      display: block;
      font-weight: bold;
      margin-bottom: 0.5rem; }
    .main-content form input[type="file"] {
      display: inline-block;
      margin-bottom: 0.75rem; }
    .main-content form button {
      background-color: #4caf50;
      color: #fff;
      font-size: 1rem;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease-in-out; }
      .main-content form button:hover {
        background-color: #3d8b40; }

/*# sourceMappingURL=styles.css.map */
