@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,500;0,700;1,500&family=Work+Sans:ital,wght@0,400;0,500;0,700;1,500;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css?family=Lato&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Open+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap");
html {
  font-family: sans-serif; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

img {
  display: block;
  border: 0;
  width: 100%;
  height: auto; }

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0; }

:root {
  --main-color: #4b81f8;
  --primary-color: #4b81f8;
  --main-bg-color: #f0f0f0;
  --main-font-color: #333;
  --light-color: #efefef;
  --dark-color: #4d4d4d;
  --hover-color: #333;
  --white-color: #fff;
  --gray-color: #333;
  --main-font: 'Work Sans', sans-serif;
  --alt-font: 'Shadows Into Light', cursive;
  --alt-font2: 'Lato', sans-serif;
  --heading-font: 'Roboto', serif;
  --shadow-color: rgba(0, 0, 0, 0.25);
  --main-padding: 20px;
  --transition-duration: 0.3s; }

.button, .cookie-button {
  padding: var(--main-padding);
  transition: background-color var(--transition-duration); }

/* Navigational Links Styling */
/* Base styles (mobile-first approach) */
.site {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

.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; }

#gallery_category {
  font-family: 'Rubik', sans-serif;
  color: darkgray; }

/*img {
  pointer-events: none;
}*/
/* Select Styling */
.select-css {
  display: block;
  font-size: 1.0em;
  font-weight: 400;
  color: darkgray;
  line-height: 1.3;
  width: 12.5em;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  appearance: none;
  background-color: #fff;
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: .65em auto, 100%;
  padding: 0.625em;
  margin: 0 0 1.250em; }

.select-css::-ms-expand {
  display: none; }

.select-css:hover {
  border-color: #888; }

.select-css:focus {
  border-color: #aaa;
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: darkgray;
  outline: none; }

.select-css option {
  font-weight: normal; }

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.563em;
  height: 1.563em;
  background-color: darkgray;
  margin: 0.625em 0.625em 0; }

.links:hover {
  cursor: pointer;
  background-color: #909090; }

.linkStyle {
  font-family: Arial, sans-serif;
  color: #fff; }

.main_container {
  order: 1;
  /* This will ensure that the main content comes after the nav */ }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  /* Hide by default */ }

.cookie-banner p {
  margin: 0;
  display: inline; }

.cookie-banner a {
  color: #f1c40f;
  text-decoration: underline; }

.cookie-button {
  background-color: #f1c40f;
  color: #333;
  border: none;
  padding: 10px 20px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s; }

.cookie-button:hover {
  background-color: #e1b50f; }

html {
  scroll-behavior: smooth; }

h1.add_print_header {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #333; }

form.add_print_form, form.edit_print_form, form.centered_form {
  display: flex;
  max-width: 800px;
  flex-direction: column;
  margin: 1.250em auto;
  text-align: center; }

.form-group {
  margin-bottom: 15px; }

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

input[type="text"],
input[type="file"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; }

textarea {
  resize: vertical;
  min-height: 100px; }

button {
  padding: 10px 20px;
  background-color: #28a745;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s; }

button:hover {
  background-color: #218838; }

#result {
  margin-top: 20px;
  text-align: center;
  color: #333; }

h1.edit_print_header {
  text-align: center; }

.centered_form {
  margin-bottom: 30px; }

.thumbnail_container {
  display: flex;
  justify-content: center;
  margin: 20px 0; }

.thumbnail_container img {
  max-width: 200px;
  border: 1px solid #ccc;
  border-radius: 4px; }

#result {
  margin-top: 20px;
  text-align: center;
  color: #333; }

.nav {
  order: -1; }

/* Burger button */
.nav > .nav-btn {
  background: none;
  border: none;
  display: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  z-index: 999; }

.nav > .nav-btn:focus {
  outline: none; }

.nav > .nav-btn:hover {
  transform: scale(1.1); }

.nav > .nav-btn > span {
  display: block;
  width: 35px;
  height: 5px;
  background-color: #000;
  margin: 6px 0; }

/* Horizontal navigation for larger screens */
.nav > .nav-links {
  display: flex;
  flex-direction: row;
  padding: 10px 0;
  align-items: center; }
  @media (max-width: 600px) {
    .nav > .nav-links {
      flex-direction: column;
      display: none; } }

.nav > .nav-links > a {
  text-decoration: none;
  color: #000;
  padding: 10px;
  display: block; }

.nav > .nav-links > a:hover {
  background-color: #f5f5f5;
  color: #555; }

/* Media Query for Small Screens */
@media (max-width: 600px) {
  .headerStyle {
    display: none; }

  .nav > .nav-btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px; }

  .nav > .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    flex-direction: column; }

  .nav > .nav-links.active {
    display: flex; } }
/* Container for the form */
.login_style {
  width: 400px;
  margin: 40px auto;
  padding: 30px;
  background-color: #f0f0f0;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  font-family: Arial, sans-serif;
  /* Responsive adjustments */ }
  @media (max-width: 768px) {
    .login_style {
      width: 80%;
      margin: 30px auto;
      padding: 20px; } }
  @media (max-width: 480px) {
    .login_style {
      width: 90%;
      margin: 20px auto;
      padding: 15px; } }

/* Style labels */
.text_username,
.text_password {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  /* Responsive adjustments */ }
  @media (max-width: 768px) {
    .text_username,
    .text_password {
      font-size: 16px; } }
  @media (max-width: 480px) {
    .text_username,
    .text_password {
      font-size: 14px; } }

/* Style input fields */
.io_username,
.io_password {
  width: 94%;
  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  /* Responsive adjustments */ }
  @media (max-width: 768px) {
    .io_username,
    .io_password {
      font-size: 14px; } }
  @media (max-width: 480px) {
    .io_username,
    .io_password {
      font-size: 12px; } }

/* Style input fields on focus */
.io_username:focus,
.io_password:focus {
  border-color: #0b79f7;
  outline: none; }

#searchForm {
  max-width: 100%;
  /* Ensure form doesn't exceed the width of its container */
  padding: 1.250em;
  box-shadow: 0px 10px 20px var(--shadow-color);
  border-radius: 5px;
  font-size: 16px;
  /* Base font size */ }

#searchForm .input-group {
  margin-bottom: 20px; }

#searchForm .input-group label {
  display: block;
  margin-bottom: 10px; }

#searchForm .input-group .input-field,
#searchForm .input-group .select-css {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--main-font-color);
  border-radius: 5px;
  box-sizing: border-box; }

#searchForm .search_button {
  display: block;
  /* Make the button full-width */
  width: 100%;
  /* Ensure the button is full-width */
  background-color: var(--primary-color);
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  /* Add some margin to the top of the button */ }

#searchForm .search_button:hover {
  background-color: #3a6fc7; }

/* Responsive styles for tablets and smaller devices */
@media screen and (max-width: 768px) {
  #searchForm {
    padding: 15px;
    /* Slightly reduce padding */ }

  #searchForm .input-group label,
  #searchForm .input-group .input-field,
  #searchForm .input-group .select-css {
    font-size: 14px;
    /* Slightly reduce font size for better fit */ } }
/* Responsive styles for smartphones */
@media screen and (max-width: 480px) {
  #searchForm {
    padding: 10px;
    /* Further reduce padding */
    box-shadow: none;
    /* Optionally remove shadow for a flatter design */ }

  #searchForm .input-group label,
  #searchForm .input-group .input-field,
  #searchForm .input-group .select-css {
    font-size: 16px;
    /* Keep font size legible on small screens */ }

  /* You may also want to increase the size of the button for easier interaction */
  #searchForm .search_button {
    padding: 15px 20px; } }
.data-form {
  max-width: 37.5em;
  /* Change from fixed width to max-width for responsiveness */
  margin: auto;
  padding: 20px;
  box-shadow: 0 5px 15px var(--shadow-color);
  border-radius: 10px;
  background: #fff; }

.data-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: bold; }

.data-form input[type="text"] {
  font-size: 1.2rem; }

.data-form img {
  width: 100%;
  max-width: 300px;
  height: 100%;
  max-height: 250px; }

/* Adjust the input fields to be width: 100% so that they are responsive */
.data-form input[type="text"],
.data-form input[type="number"],
.data-form textarea,
.data-form .select-css {
  width: 100%;
  /* Changed from 96% to 100% to fill container, padding will still apply */
  box-sizing: border-box;
  /* Include padding in the width */
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--shadow-color);
  border-radius: 5px;
  background: var(--input-bg-color);
  transition: background 0.3s ease; }

.data-form input[type="text"]:focus,
.data-form input[type="number"]:focus,
.data-form textarea:focus,
.data-form .select-css:focus {
  background: var(--input-focus-color);
  outline: none; }

.data-form textarea {
  height: 18.5em;
  resize: none;
  font-size: 1.2rem; }

#submit_picture_grid_area {
  display: flex;
  justify-content: flex-end;
  /* Aligns the button to the right */
  /* Other styling as necessary */ }

.form-button {
  text-transform: capitalize;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 1.250em; }

.form-button:hover {
  background: #3366cc; }

.file-input-style {
  display: none; }

.file-input-style + label {
  display: inline-block;
  /* This allows you to set a width on the label */
  padding: 10px 20px;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease; }

.file-input-style + label:hover {
  background: #3366cc; }

.progress-bar-container {
  margin-bottom: 20px; }

.progress-bar {
  height: 20px;
  background: var(--input-bg-color); }

.progress-bar-title {
  margin-bottom: 5px; }

/* Responsive styles */
@media screen and (max-width: 768px) {
  .data-form {
    padding: 10px;
    /* Smaller padding on smaller screens */ }

  .file-input-style + label,
  .form-button {
    display: block;
    /* Make buttons take the full width */
    width: calc(100% - 20px);
    /* 100% width minus the padding on the left and right */
    margin: 10px 0;
    /* Add some margin to the top and bottom for spacing */
    box-sizing: border-box;
    /* Ensures that the padding is included in the width */ }

  .progress-bar-container,
  .progress-bar {
    width: 100%;
    /* Full width progress bars on smaller screens */ }

  .data-form img {
    max-width: 100%;
    /* Full width images on smaller screens */
    height: auto;
    /* Maintain aspect ratio */ } }
/* Very small screens, like mobile phones */
@media screen and (max-width: 480px) {
  .main_container {
    margin: 1.250em 0.625em; }

  .main_container .image-header {
    margin: 0 auto 0.625em; }

  .data-form {
    max-width: 100%;
    /* Full width on very small screens */
    margin: 10px;
    /* Reduced margin */
    box-shadow: none;
    /* Optional: remove shadow on very small screens */ }

  .file-input-style + label,
  .form-button {
    padding: 10px;
    /* Adjust padding to ensure it fits smaller screens */
    width: auto;
    /* On very small screens, let the button auto adjust */ }

  /* You might want to increase the font size for touch targets on small screens */
  .file-input-style + label,
  .form-button {
    font-size: larger;
    /* Larger font for small screens for better readability */ }

  .data-form label,
  .progress-bar-title {
    font-size: smaller;
    /* Reduce font size for smaller screens */ }

  .data-form textarea {
    min-height: 150px;
    /* This is the minimum height for new textareas */
    height: auto;
    /* Height will be adjusted automatically by JavaScript */
    overflow-y: hidden;
    /* Hide the scrollbar when not necessary */ } }
/* Grayed-out effect for the form */
.form-disabled {
  opacity: 0.4;
  /* Dim the form */
  pointer-events: none;
  /* Prevent interactions */
  background-color: rgba(200, 200, 200, 0.3);
  /* Add a subtle overlay */
  filter: grayscale(100%) blur(1px);
  /* Optional: Grayscale and blur for inactive effect */
  position: relative;
  /* Allow overlay placement */ }

/* Optional: Add smooth transition for the effect */
.data-form {
  transition: all 0.3s ease; }

/* Overlay effect */
.form-disabled::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  /* Light gray overlay */
  pointer-events: none;
  /* Ensure it doesn’t block events */
  z-index: 1; }

.remote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px; }

.remote_item {
  margin: 0 10px; }

#ePrev, #eNext {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease; }

#ePrev:hover, #eNext:hover {
  background-color: #3a6fc7; }

#status {
  font-size: 18px;
  font-weight: bold; }

#serviceForm {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Helvetica Neue', Arial, sans-serif; }
  #serviceForm label {
    display: block;
    margin-bottom: 8px;
    color: #333333;
    font-size: 16px;
    font-weight: 600; }
  #serviceForm input[type="text"],
  #serviceForm input[type="tel"],
  #serviceForm input[type="email"],
  #serviceForm input[type="url"] {
    width: calc(100% - 20px);
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px; }
    #serviceForm input[type="text"]:focus,
    #serviceForm input[type="tel"]:focus,
    #serviceForm input[type="email"]:focus,
    #serviceForm input[type="url"]:focus {
      border-color: #007bff;
      outline: none; }
  #serviceForm input[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease; }
    #serviceForm input[type="submit"]:hover {
      background-color: #004494; }
  #serviceForm fieldset {
    border: 2px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px; }
    #serviceForm fieldset legend {
      padding: 0 15px;
      color: #333333;
      font-size: 18px;
      font-weight: bold; }
  #serviceForm br {
    display: none; }

.success-message {
  color: green;
  margin: 10px 0;
  font-size: 1em; }

/* General .main_container styles */
.main_container {
  max-width: 850px;
  margin: 20px auto;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f0f8ff;
  /* Cool blue background */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #d1e7f7; }
  .main_container .main-heading {
    font-family: 'Caveat Brush', 'Arial', sans-serif;
    font-size: 1.75rem;
    text-align: center;
    color: transparent;
    background: linear-gradient(90deg, #6a0dad, #8a2be2, #4b0082);
    text-shadow: 2px 2px 0 #f5e6ff, 4px 4px 5px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid #6a0dad; }
    .main_container .main-heading:hover {
      background: linear-gradient(90deg, #ff4500, #ff6347, #d32f2f);
      text-shadow: 2px 2px 0 #ffe6e6, 4px 4px 5px rgba(0, 0, 0, 0.3);
      border-bottom: 2px solid #ff4500;
      /* Change to red on hover */ }
  .main_container #myButton {
    outline: none;
    color: #fff;
    border: none;
    background-color: #f12929;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
    width: 7.6em;
    font-family: "Rubik", sans-serif;
    font-size: 1.2em;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    padding: 0.313em;
    transition: background-color 0.5s;
    text-align: center; }
  .main_container #myButton:hover {
    background-color: #009578; }
  .main_container .main-content {
    font-family: 'Nunito', 'Arial', sans-serif;
    /* Use the imported font */
    font-size: 1rem;
    color: #2b6777;
    /* Dark teal for contrast */
    text-align: justify;
    line-height: 1.8;
    margin: 10px 0; }
    .main_container .main-content em {
      font-style: italic;
      color: #006db6;
      /* Accent color for emphasized text */ }
    .main_container .main-content strong {
      color: #004c8c;
      /* Highlighted text matches the heading color */ }
  .main_container .image-header {
    float: left;
    margin: 0 15px 15px 0;
    max-width: 40%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
    .main_container .image-header img {
      width: 100%;
      height: auto;
      display: block; }
  .main_container::after {
    content: '';
    display: table;
    clear: both; }

/* Specific styles for the form page */
.form_page {
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
  .form_page #data_entry_form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px; }
    .form_page #data_entry_form #image_display_area img {
      max-width: 50%;
      height: auto;
      display: block;
      border: 1px solid #ddd;
      border-radius: 8px; }
    .form_page #data_entry_form .file-input-style {
      display: block;
      width: 100%; }
    .form_page #data_entry_form .select-css {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px; }
    .form_page #data_entry_form .enter_input_style {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px; }
    .form_page #data_entry_form .text_input_style {
      width: 100%;
      /* Full width for consistent layout */
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      resize: vertical;
      /* Allow resizing only vertically */
      min-height: 100px;
      /* Set a reasonable minimum height */
      max-height: 300px;
      /* Optional: Limit the maximum height */
      line-height: 1.5;
      /* Improve readability */
      overflow: auto;
      /* Ensure scrollbars appear if content overflows */ }
    .form_page #data_entry_form .form-button {
      background-color: #0073e6;
      color: #fff;
      padding: 10px 15px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s; }
      .form_page #data_entry_form .form-button:hover {
        background-color: #005bb5; }

@media (max-width: 768px) {
  .main_container {
    flex-direction: column; }
    .main_container .image-header {
      max-width: 100%; }
    .main_container .text-content {
      text-align: center; } }
.content-header {
  width: 100%;
  max-width: 800px; }

.main_container h2 {
  color: var(--gray-color);
  font-size: 1.0em;
  font-weight: bold;
  margin-bottom: 0.625em; }

.main_container p {
  color: var(--gray-color);
  font-size: 1.0em;
  line-height: 1.5; }

/* Responsive design for smaller screens */
@media (max-width: 600px) {
  .main_container {
    padding: 10px;
    /* Reduce padding on smaller screens */ }

  .image-header {
    max-width: 100%;
    /* Make the image full-width on smaller screens */
    margin: 0 0 10px 0;
    /* Adjust margins */ }

  .main-content {
    font-size: 0.9em;
    /* Reduce font size on smaller screens */ } }
/* For even smaller screens (e.g., mobile devices) */
@media (max-width: 400px) {
  .main_container {
    padding: 5px;
    /* Further reduce padding on very small screens */ }

  .main-heading {
    font-size: 1.2em;
    /* Reduce heading font size on very small screens */ }

  .image-header img {
    border-radius: 8px;
    /* Reduce border radius on very small screens */ } }
/* Optional: Mobile-specific layout for the .main_container */
@media (max-width: 400px) {
  .main_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content on mobile screens */ }

  .image-header {
    margin: 0 auto 10px auto;
    /* Center the image on mobile screens */ } }
/* Style the new .main-section element */
.main-section {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

.main-section .main-heading {
  margin-top: 0; }

/* Make the image responsive */
.image-header img {
  width: 100%;
  height: auto;
  display: block; }

/* Make the content responsive */
.main-content {
  font-size: 1em;
  line-height: 1.5;
  margin: 10px 0; }

/* Add a media query to adjust the font size on smaller screens */
@media (max-width: 768px) {
  .main-content {
    font-size: 0.9em; } }
/* Add a media query to adjust the font size on even smaller screens */
@media (max-width: 400px) {
  .main-content {
    font-size: 0.8em; } }
.main-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

.main-section .main-heading {
  font-size: 1.5em;
  padding: 5px;
  margin-bottom: 10px; }

.main-section .image-header {
  margin-bottom: 10px; }

.main-section .main-content {
  font-size: 1em;
  line-height: 1.5;
  margin: 10px 0; }

/* Add a media query to adjust the flex direction on smaller screens */
@media (max-width: 768px) {
  .main-section {
    flex-direction: column; } }
/* Add a media query to adjust the flex direction on even smaller screens */
@media (max-width: 400px) {
  .main-section {
    flex-direction: column; } }
.main_manager_container {
  grid-area: main;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.250em;
  max-width: 75em;
  margin: 0 auto; }
  .main_manager_container .article {
    flex: 0 0 calc(33.33% - 1.250em);
    display: flex;
    min-height: 25.00em;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
    .main_manager_container .article span {
      color: blue;
      cursor: pointer;
      text-decoration: none; }
      .main_manager_container .article span:hover {
        color: red; }
    .main_manager_container .article:only-child {
      flex: 0 1 100%;
      max-width: 600px;
      margin: auto; }
    .main_manager_container .article:only-of-type, .main_manager_container .article:first-child:nth-last-child(2), .main_manager_container .article:last-child:nth-child(2) {
      flex-basis: calc(50% - 1.250em);
      max-width: none; }
    .main_manager_container .article .largeImage {
      display: inline-block;
      transition: transform 0.3s ease-in-out; }
      .main_manager_container .article .largeImage:hover {
        transform: scale(1.1); }
    .main_manager_container .article:hover {
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); }
    .main_manager_container .article .imageStyle {
      border-radius: 5px 5px 0 0;
      width: 100%;
      height: 200px;
      object-fit: cover; }
    .main_manager_container .article .articleHeading {
      font-family: "Roboto", Arial, sans-serif;
      font-size: clamp(1rem, 2rem, 1.5rem);
      margin-bottom: 10px;
      color: #0056b3;
      line-height: 1.0; }
    .main_manager_container .article .articleText {
      font-family: "Roboto", Arial, sans-serif;
      font-size: clamp(1rem, 1rem, 1.5rem);
      padding: 1.25em;
      color: #0056b3;
      line-height: 1.6;
      text-align: left;
      white-space: pre-wrap; }

@media (max-width: 768px) {
  .main_manager_container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5em; }
    .main_manager_container .article {
      flex: 1 1 auto;
      max-width: none;
      margin: 0;
      margin-top: 0.625em;
      box-shadow: none; }
    .main_manager_container .imageStyle {
      height: auto; } }
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center; }
  .lightbox .lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
    margin: auto; }

@media (max-width: 768px) {
  .lightbox .lightbox-image {
    transform: rotate(0deg);
    width: auto;
    height: auto;
    object-fit: contain;
    margin: auto;
    max-width: 100%;
    max-height: 100%; } }
@media (orientation: landscape) {
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center; }
    .lightbox .lightbox-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      width: auto;
      height: auto;
      margin: auto; } }
h1, h2.product_title {
  color: #333; }

h2.product_title {
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1em;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #007bff 0%, #00d2ff 100%);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 6px 8px rgba(0, 0, 0, 0.19); }

.product_page {
  display: flex;
  flex-direction: column;
  align-items: center; }

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 80%;
  margin: 0 auto;
  justify-content: center;
  /* Center the products horizontally */ }

.product {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
  /* Center the product */ }

.product img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  cursor: pointer; }

.product-info {
  padding: 15px;
  flex-grow: 1; }

.product-info h3 {
  margin: 0;
  color: #333; }

.product-info p {
  margin: 10px 0;
  color: #666; }

.product-info .price {
  color: #007BFF;
  font-size: 1.2em; }

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

.product-info .btn,
.product-info .policies-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  align-self: flex-end;
  cursor: pointer; }

.product-info .btn:hover,
.product-info .policies-link:hover {
  background: #0056b3; }

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8); }

.modal-content {
  display: block;
  width: 80%;
  max-width: 1200px;
  margin: 1.250em auto auto; }

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s; }

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer; }

/* Pagination styles */
#pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0; }

#pagination button,
#pagination span {
  padding: 10px 15px;
  margin: 0 5px;
  background: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block; }

#pagination button:disabled {
  background: #ccc;
  cursor: not-allowed; }

#pagination button:hover:not(:disabled) {
  background: #0056b3; }

#pagination span {
  background: transparent;
  /* Make sure ellipsis doesn't have button background */
  color: #333;
  /* Different color for ellipsis */
  cursor: default;
  /* No pointer cursor for ellipsis */ }

.payment-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  display: none;
  /* Hidden by default */ }

.payment-form h2 {
  margin-bottom: 20px;
  color: #333; }

.payment-form .form-group {
  margin-bottom: 15px; }

.payment-form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555; }

.payment-form .form-group input,
.payment-form .form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px; }

.payment-form .form-group input:focus,
.payment-form .form-group select:focus {
  border-color: #007BFF; }

.payment-form button {
  width: 100%;
  padding: 10px;
  background-color: #007BFF;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer; }

.payment-form button:hover {
  background-color: #0056b3; }

.error {
  color: red;
  margin-top: 10px; }

.sidebar-content {
  display: none;
  /* Hidden by default */
  flex-direction: row;
  align-items: center;
  justify-content: space-between; }

.sidebar-content.active {
  display: flex;
  /* Show when active */ }

.sidebar-image {
  max-width: 50%;
  border-radius: 8px;
  margin-right: 20px;
  cursor: pointer; }

.cancel-btn {
  background-color: #f44336;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px; }

.cancel-btn:hover {
  background-color: #d32f2f; }

.under-construction {
  text-align: center;
  margin-top: 20px;
  background: #ffcc00;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); }

/* Define the grid layout for smaller screens */
@supports (grid-area: auto) {
  @media screen and (max-width: 77.999em) {
    .site {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      grid-template-areas: "nav" "header" "main" "sidebar" "footer";
      gap: 0;
      justify-content: center;
      align-items: start; }

    .main_container {
      grid-area: main;
      flex-grow: 1;
      /* Allow the main content to take up the remaining space */
      width: 96%;
      /* Ensures main content takes full width */ }

    .nav {
      grid-area: nav;
      width: 100%;
      /* Ensures nav takes full width */
      height: 3.75em; }

    .sidebar {
      grid-area: sidebar;
      padding: 1.250em; }

    .colophon {
      grid-area: footer;
      display: block;
      position: relative;
      bottom: 0; }
      .colophon p {
        color: #2E2E2E;
        font-size: 0.8em;
        text-align: center; } } }
/* Larger screen styles */
@supports (grid-area: auto) {
  @media screen and (min-width: 78em) {
    /* 1248px / 16px = 78em */
    .site {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: auto 3.00em 1fr auto;
      grid-template-areas: "header header" "nav nav" "sidebar main" "sidebar main" "footer footer";
      gap: 1.250em;
      justify-content: center;
      align-items: start; }

    .headerStyle {
      grid-area: header;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #f0f8ff;
      /* Matching the main container's background color */
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      /* Softer shadow to match the container */
      border-radius: 12px;
      padding: 2em;
      transition: box-shadow 0.3s ease, background-color 0.3s ease; }
      .headerStyle:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        background-color: #e0f0ff;
        /* Slightly darker blue on hover */ }
      .headerStyle .logo {
        flex: 0 0 auto;
        max-width: 50%;
        height: 18em;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease; }
        .headerStyle .logo:hover {
          transform: scale(1.05);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); }
          .headerStyle .logo:hover img {
            filter: brightness(110%);
            border: 2px solid #0096c7;
            /* Accent blue for hover effect */ }
        .headerStyle .logo img {
          width: 100%;
          height: auto;
          transition: filter 0.3s ease, border 0.3s ease; }
      .headerStyle .header-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        font-family: 'Open Sans', Arial, sans-serif;
        color: #004c8c;
        /* Deep blue for text to match the heading color */
        padding: 0.5em;
        text-align: right;
        margin-left: auto; }
        .headerStyle .header-text h1 {
          font-family: 'Roboto', sans-serif;
          font-size: 1.8em;
          margin: 0;
          color: #004c8c;
          /* Matching main container heading */ }
        .headerStyle .header-text p {
          font-size: 1.2em;
          color: #006db6;
          /* Accent blue for paragraph text */
          margin: 0.2em 0; } }
      @media screen and (min-width: 78em) and (max-width: 768px) {
        .headerStyle .header-text {
          align-items: center;
          text-align: center;
          font-size: 1.2em;
          margin-left: 1em; }
          .headerStyle .header-text h1 {
            font-size: 1.5em; }
          .headerStyle .header-text p {
            font-size: 1em; } }
    @media screen and (min-width: 78em) and (max-width: 768px) {
      .headerStyle {
        flex-direction: column;
        align-items: center; }
        .headerStyle .logo {
          margin-bottom: 0.5em; }
        .headerStyle .header-text {
          align-items: center; } }

  @media screen and (min-width: 78em) {
    .mainHeading {
      font-size: 2em;
      /* Adjust size as needed */
      font-weight: bold;
      line-height: 1;
      margin: 0; }

    .subHeading {
      font-size: 1em;
      /* Adjust size as needed */
      margin-top: 0;
      /* Adjust top margin to space subheading from main heading */
      font-weight: lighter; }

    .nav {
      grid-area: nav;
      display: flex;
      justify-content: flex-start;
      width: 13.50em;
      height: auto; }

    .sidebar {
      grid-area: sidebar;
      align-self: start;
      height: 12.50em;
      margin: 1.250em; }
      .sidebar #product-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        background-color: #f0f8ff;
        border: 1px solid #ddd;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        width: 300px;
        margin: 0 auto; }
        .sidebar #product-container img {
          width: 100%;
          height: 200px;
          object-fit: cover;
          border-radius: 10px;
          margin-bottom: 20px;
          transition: opacity 0.5s ease-in-out;
          cursor: pointer; }
        .sidebar #product-container h2 {
          font-size: 1.2em;
          font-weight: bold;
          color: transparent;
          /* Make the text color transparent */
          text-align: center;
          margin-bottom: 20px;
          word-wrap: break-word;
          /* Raised font effect with color */
          background: linear-gradient(90deg, #6a0dad, #8a2be2, #4b0082);
          -webkit-background-clip: text;
          /* Clip the background to the text */
          -webkit-text-fill-color: transparent;
          /* Make the text color transparent */
          /* Additional styles for more depth (optional) */
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          /* Add a subtle shadow */ }
        .sidebar #product-container .nav-controls {
          display: flex;
          justify-content: space-between;
          width: 100%;
          margin-top: 20px; }
          .sidebar #product-container .nav-controls button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            background-color: #4CAF50;
            color: #fff;
            font-size: 1em; }
            .sidebar #product-container .nav-controls button:hover {
              background-color: #3e8e41; }

    .main_container {
      grid-area: main; }

    .main_container h2 {
      font-size: 2.4em; }

    .main_container p {
      font-size: 1.250em; }

    /* This allows the amount of columns to be set to 6 with each section taking up a single equal fraction. It also sets the grid row height to interchange between 100px and 300px automatically. Grid-auto-flow attempts to fill any wholes created from spanning.*/
    .container {
      grid-area: main;
      justify-content: center;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-auto-rows: 6.250em 16.50em;
      grid-gap: 0.625em;
      grid-auto-flow: dense;
      margin-top: 1.250em; }

    .product-item {
      width: 100%;
      height: 100%;
      position: relative; }

    .product-item .images {
      width: 100%;
      height: 100%;
      overflow: hidden; }

    /* object-fit allows the element to re-size itself. object-position sets the element to focus on the center of the image instead of the default top left*/
    .product-item .images img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 50%;
      cursor: pointer;
      transition: 1s ease-in-out; }

    .product-item:hover .images img {
      overflow: hidden; }

    .product-item .title {
      opacity: 0;
      position: absolute;
      top: 50%;
      left: 40%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 4;
      transition: 1s ease-in-out;
      -webkit-backdrop-filter: blur(5px) saturate(1.8);
      backdrop-filter: blur(5px) saturate(1.8);
      max-width: 65%; }

    .product-item .title .pictureHeading {
      color: #fff;
      font-size: 0.8em;
      z-index: 5; }

    .product-item:hover .title {
      opacity: 1;
      animation: move-down 1s linear;
      padding: 1em;
      width: 100%; }

    /* grid-column allows an element to span however many  columns you designate, in this case it is 3 for all elements with the w-3 class. This is helpful for a dynamic grid*/
    .w-3 {
      grid-column: span 3; }

    .w-2 {
      grid-column: span 2; }

    .w-1 {
      grid-column: span 1; }

    .w-4 {
      grid-column: span 4; }

    .w-5 {
      grid-column: span 5; }

    .w-6 {
      grid-column: span 6; }

    /*  grid-row allows an element to span however many  rows you designate, in this case it is 3 for all elements with the h-3 class. */
    .h-3 {
      grid-row: span 3; }

    .h-1 {
      grid-row: span 1; }

    .h-2 {
      grid-row: span 2; }

    .h-4 {
      grid-row: span 4; }

    .h-5 {
      grid-row: span 5; }

    .h-6 {
      grid-row: span 6; }

    .active {
      grid-area: main;
      display: grid;
      grid-template-columns: minmax(40em, 50em) 1fr;
      grid-template-areas: "lightboxImage lightboxText" "lightboxExif lightboxText" "lightboxExif lightboxText";
      justify-content: center;
      margin-top: 1.250em;
      z-index: 2000; }

    .galleryImage {
      grid-area: lightboxImage;
      width: 100%;
      object-fit: contain; }

    .galleryExif {
      grid-area: lightboxExif;
      display: flex;
      justify-content: center;
      height: 3.200em; }

    .galleryText {
      grid-area: lightboxText !important;
      white-space: break-spaces !important; }

    .colophon {
      grid-area: footer; }
      .colophon p {
        color: #2E2E2E;
        font-size: 0.8em;
        text-align: center; } } }
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5em;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  width: 45em;
  padding: 2em;
  margin: 1.5em auto;
  font-family: 'Work Sans', sans-serif; }
  .contact #message {
    grid-column: 1 / span 2;
    margin-bottom: 1.5em;
    padding: 1em;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .contact #message img.pen {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 3px solid #4caf50;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: block; }
    .contact #message #successMessage {
      font-family: 'Rubik', sans-serif;
      font-size: 1em;
      color: #009578; }
  .contact label {
    font-size: 0.9em;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.3em;
    display: block; }
  .contact input[type="text"],
  .contact input[type="email"],
  .contact input[type="tel"],
  .contact input[type="url"] {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    margin-bottom: 0.5em;
    font-size: 0.95em;
    background-color: #f7f7f7;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s, background-color 0.3s;
    box-sizing: border-box; }
  .contact textarea {
    grid-column: 1 / span 2;
    resize: none;
    height: 10em; }
  .contact input:focus,
  .contact textarea:focus {
    border-color: #4caf50;
    background-color: #fff;
    outline: none; }
  .contact button,
  .contact input[type="submit"] {
    grid-column: 1 / span 2;
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 0.8em 1.5em;
    font-weight: 600;
    font-size: 1em;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 1em; }
    .contact button:hover,
    .contact input[type="submit"]:hover {
      background: linear-gradient(135deg, #45a049, #3e913f);
      transform: scale(1.05); }

@media screen and (max-width: 1024px) {
  .contact {
    width: 80%;
    padding: 1.5em; } }
@media screen and (max-width: 768px) {
  .contact {
    grid-template-columns: 1fr;
    width: 90%;
    padding: 1em; }
    .contact textarea,
    .contact input[type="submit"],
    .contact button,
    .contact #message,
    .contact .contact_name,
    .contact .contact_email,
    .contact .contact_phone,
    .contact .contact_website,
    .contact .contact_comment {
      grid-column: 1; }
    .contact #message {
      max-width: 100%;
      padding: 1em; }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  textarea {
    width: 100%;
    box-sizing: border-box; } }
@media screen and (max-width: 480px) {
  .contact {
    width: 86%;
    padding: 0.8em;
    grid-gap: 1em; }
    .contact input[type="text"],
    .contact input[type="email"],
    .contact input[type="tel"],
    .contact input[type="url"],
    .contact textarea {
      padding: 0.6em;
      font-size: 0.9em; }
    .contact button,
    .contact input[type="submit"] {
      padding: 0.6em 1em;
      font-size: 0.9em; }
    .contact #message {
      padding: 0.8em; } }
@media screen and (max-width: 320px) {
  .contact {
    grid-gap: 0.8em;
    padding: 0.5em; }
    .contact input[type="text"],
    .contact input[type="email"],
    .contact input[type="tel"],
    .contact input[type="url"],
    .contact textarea {
      padding: 0.4em;
      font-size: 0.8em; }
    .contact button,
    .contact input[type="submit"] {
      padding: 0.4em 0.8em;
      font-size: 0.8em; }
    .contact #message {
      padding: 0.5em; }
    .contact img.pen {
      width: 80px;
      height: 80px; } }
.flex-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1em; }
  .flex-container label {
    font-size: 0.9em;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.3em; }
  .flex-container input, .flex-container textarea {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 0.95em;
    background-color: #f7f7f7;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s, background-color 0.3s;
    box-sizing: border-box; }

.owner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 2em; }
  .owner .profile {
    background-color: #f7f7f7;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 1em;
    padding: 1em; }
    @media screen and (max-width: 1200px) {
      .owner .profile {
        width: calc(50% - 2em); } }
    @media screen and (max-width: 992px) {
      .owner .profile {
        width: calc(50% - 2em); } }
    @media screen and (max-width: 768px) {
      .owner .profile {
        width: 100%; } }
    @media screen and (max-width: 480px) {
      .owner .profile {
        padding: 0.5em;
        margin: 0.5em; } }
    .owner .profile .details p {
      font-size: 0.9em;
      color: #333;
      margin-bottom: 0.5em; }
      .owner .profile .details p strong {
        font-weight: 600;
        font-size: 1em; }
      .owner .profile .details p a {
        text-decoration: none;
        color: #4caf50; }
        .owner .profile .details p a:hover {
          color: #3e913f; }

.owner {
  background-color: #ffffff;
  padding: 2em;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }

.profile {
  transition: all 0.3s ease-in-out; }
  .profile:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); }

.lightbox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1000;
  display: none;
  margin: 0;
  overflow: hidden;
  /* Add this to hide the browser's default toolbar */ }
  .lightbox-container.active {
    background-color: rgba(0, 0, 0, 0.8);
    display: block; }

.lightbox {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 800px;
  transition: opacity 0.5s;
  max-height: 90%;
  overflow-y: auto;
  z-index: 1001; }
  @media (max-width: 1200px) {
    .lightbox {
      max-width: 90%; } }
  @media (max-width: 900px) {
    .lightbox {
      max-width: 95%; } }
  .lightbox.active {
    display: block; }
  .lightbox .lightbox-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 10px; }
  .lightbox .lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    animation: fadeIn 1s; }
    .lightbox .lightbox-content .lightbox-image {
      width: calc(100% - 40px);
      height: auto;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      cursor: pointer; }
    .lightbox .lightbox-content .lightbox-text {
      width: 100%;
      max-height: 300px;
      overflow-y: auto;
      padding: 20px;
      white-space: pre-wrap;
      background-color: #f7f7f7;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      user-select: none;
      -webkit-user-select: none;
      /* For Safari and Chrome */
      -moz-user-select: none;
      /* For Firefox */
      -ms-user-select: none;
      /* For Internet Explorer */ }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.lightbox-pdf {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

@media (max-width: 768px) {
  .lightbox {
    width: 95%;
    height: 95%;
    padding: 10px; }
    .lightbox .lightbox-title {
      font-size: 20px; }
    .lightbox .lightbox-content {
      font-size: 16px; }
      .lightbox .lightbox-content .lightbox-image {
        width: 100%;
        height: 50%;
        margin: 10px 0;
        float: none; }
      .lightbox .lightbox-content .lightbox-text {
        width: 100%;
        margin: 10px 0; } }

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