  /* Styling for the body */
  body {
    background-color: #ffffff;
    /* Set background color to #ffffff */
  }

  /* Styling for the container */
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Styling for the left section */
  .left-section {
    display: flex;
    align-items: flex-start;
    /* Align items at the start of the flex container */
    flex-direction: column;
    /* Arrange items in a column */
  }

  /* Styling for the h1 text */
  h1 {
    margin-right: 10px;
    margin-left: 14px;
    font-family: 'UniformRounded-Medium', sans-serif;
    font-size: 25px;
    display: flex;
    letter-spacing: -0.67px;
    line-height: 1;
    font-weight: 500;
    color: #333;
  }

  @font-face {
    font-family: GothamXNarrow;
    src: url(GothamXNarrowMedium.otf);
  }

  @font-face {
    font-family: GothamXNarrowBook;
    src: url(GothamXNarrow-Book.ttf);
  }

  @font-face {
    font-family: GothamRounded;
    src: url(GothamRounded-Bold.ttf);
  }

  @font-face {
    font-family: GothamRoundedBook;
    src: url(GothamRoundedBook.ttf);
  }

  @font-face {
    font-family: "GothamRounded-Medium";
    src: url("https://db.onlinewebfonts.com/t/64614abc4eb19976e5d29c8d3335a350.eot");
    src: url("https://db.onlinewebfonts.com/t/64614abc4eb19976e5d29c8d3335a350.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/64614abc4eb19976e5d29c8d3335a350.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/64614abc4eb19976e5d29c8d3335a350.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/64614abc4eb19976e5d29c8d3335a350.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/64614abc4eb19976e5d29c8d3335a350.svg#GothamRounded-Medium")format("svg");
}

  /* Styling for the small text */
  .small-text {
    font-family: "VisbyRoundCF-Medium", sans-serif;
    font-weight: initial;
    color: #666;
    font-size: 12px;
    margin-left: 15px;
    margin-top: -15px;
    margin-bottom: 10px;
    padding-top: 1px;
  }

  .username {
    font-family: 'UniformRounded-Light', sans-serif;
    font-weight: initial;
    color: #666666;
    font-size: 15px;
    margin-left: 15px;
    margin-top: -15px;
    margin-bottom: 10px;
    padding-top: 1px;
  }

  /* Styling for the profile icon */
  .profile-icon {
    width: 60px;
    height: 60px;
    background-image: url('profile2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    margin-right: 5px;
  }

  /* Styling for the gallery slider container */
  .gallery-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 150ms ease-in-out;
    margin: 0 auto;
    /* Center the slider */
    width: 95%;
    height: 150px;
    /* Customize the height of the slider */
    overflow: hidden;
    border-radius: 10px;
    /* Rounded corners */

  }

  .gallery-slider .slide:not(:first-child) {
    display: none;
  }

  /* Styling for the individual slides within the slider */
  .gallery-slider .slide {
    display: flex;
    align-items: center;
    /* Vertically center the content */
    justify-content: center;
    /* Horizontally center the content */
    width: 100%;
    /* Full width of the slider */
    height: 100%;
    /* Full height of the slider */
    background-color: #007AC9;
    /* Background color for the slides */
    border-radius: 20px;

  }


  .slide h2 {
    margin: 10px;
    font-family: GothamXNarrow;
    word-wrap: break-word;
    word-spacing: 3px;
    font-weight: 300;
    font-size: 25px;
    color: #ffffff;
  }

  /* Styling for the gallery slider images */
  .slide img {
    max-width: 45px;
    max-height: 45px;

    object-fit: contain;
  }

  /* Styling for the dots container */
  .dots {
    display: flex;
    justify-content: center;
    margin-top: 2.5vh;
    /* Adjust the margin as needed */
    margin-bottom: 3vh;
    align-items: center;
  }

  /* Styling for the dot */
  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #8f8f8f;
    /* Placeholder background color */
    margin: 0 5px;
    transition: background-color 0.1s;
    /* Add transition for smooth color change */
  }

  /* Styling for the active dot */
  .dot.active {
    background-color: #000;
    /* Placeholder active dot color */
    width: 8px;
    height: 8px;
    size: 110%;
  }

  /* Styling for the warning icon */
  .warning-icon {
    width: 20px;
    height: 20px;
    background-image: url('warning.svg');
    /* Replace 'warning.svg' with the path to your real warning SVG file */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 1px;
    margin-left: 11px;
    margin-bottom: 4px;
  }

  /* Styling for the right section */
  .right-section {
    display: flex;
    align-items: center;
    border-top: 1px solid #ddd;
    /* Add top border */
    border-bottom: 1px solid #ddd;
    /* Add bottom border */
    padding-top: 3px;
    /* Adjust padding as needed */
    padding-bottom: 3px;
    /* Adjust padding as needed */
    margin-bottom: 2.5vh;
  }

  /* Styling for the heading 2 text */
  h2 {
    font-family: "UniformRounded-Medium", sans-serif;
    color: #333333;
    font-weight: 500;
    font-size: 18px;
    /* Set font size to 20 */
    margin-left: -1px;
    display: flex;
    line-height: 1;
    padding-left: 15px;
    letter-spacing: -0.67px;
  }

  /* Styling for the caret icon */
  .caret-icon {
    width: 12px;
    height: 18px;
    background-image: url('caret.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: auto;
    /* Add auto margin to push the caret to the right */
    margin-top: 3px;
    /* Add top margin */
    margin-bottom: 3px;
    /* Add bottom margin */
    margin-right: 14px;
  }

  /* Styling for the additional box */
  .additional-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    /* Adjust margin as needed */
    background-color: #ffffff;
    /* Adjust background color as needed */
    border-radius: 11px;
    padding-top: 1px;
    box-shadow: 0 10px 8px 1px rgba(236, 236, 236, 255);
    /* Add shadow to the box */
    margin-left: 13px;
    margin-right: 13px;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
  }

  /* Styling for the additional picture */
  .additional-picture {
    width: 106%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  /* Styling for the additional text */
  .additional-text {
    font-family: "GothamRounded-Medium";
    color: #333;
    font-weight: 500;
    font-size: 17px;
    /* Adjust font size as needed */
    margin-bottom: 20px;
    padding-top: 6px;
    /* Adjust margin as needed */
    text-align: left;
    /* Center the text */
  }

  /* Styling for the additional small text */
  .additional-small-text {
    font-family: "VisbyRoundCF-Medium", sans-serif;
    color: #666;
    font-weight: normal;
    font-size: 12px;
    /* Adjust font size as needed */
    text-align: center;
    /* Center the text */
    margin-right: auto;
  }

  /* Styling for the 'Liikenne' text */
  .additional-text .category-1 {
    font-family: "GothamRoundedBook";
    font-weight: initial;
    color: #666;
    /* Set color to #666 */
    font-weight: 500;
  }

  /* Styling for the 'Uutiset' text */
  .additional-text .category-2 {
    font-family: "GothamRoundedBook";
    font-weight: initial;
    color: #666;
    /* Set color to #666 */
    font-weight: 500;
  }

  .popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    z-index: 1;
    /* Place the overlay above other content */
    pointer-events: auto;
    /* Enable pointer events on the overlay */
  }

  .popup-container {
    z-index: 2;
  }

  .popup {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
  }

  input:focus {
    outline-color: #007AC9;
    /* Change to the color you want */
    /* Other styling for focused input, e.g., outline-width, outline-style */
  }

  button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }

  input {
    border-radius: 5px;
    width: 90%;
    padding: 10px;
    margin: 10px;
  }

  /* Responsive styles */
  @media screen and (max-width: 768px) {

    /* Adjust the border thickness for smaller screens */
    .right-section {
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      margin-top: 2.5vh;
    }


  }

  .button {
    font-family: "GothamRounded-Medium";
  }

  .loader {
    width: 30px;
    height: 30px;
    border: 4px solid rgb(137, 137, 137);
    border-bottom-color: #e0dede;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation .75s linear infinite;
  }

  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }


 #content .additional-box .additional-picture {

 }
