/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */



  :root {
    --swiss-red: #ff3300;
    --swiss-black: #000000;
    --swiss-white: #ffffff;
    --border-thick: 2px;
  }

  .font-helvetica { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .text-red { color: var(--swiss-red) !important; }
  .bg-black { background-color: var(--swiss-black) !important; }
  .bg-red { background-color: var(--swiss-red) !important; }

  .border-swiss { border: var(--border-thick) solid var(--swiss-black) !important; }
  .border-bottom-swiss { border-bottom: var(--border-thick) solid var(--swiss-black) !important; }
  .border-end-swiss { border-right: var(--border-thick) solid var(--swiss-black) !important; }

  .log-entry {
    border-bottom: 1px solid var(--swiss-black);
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    background: white;
  }
  .log-entry:hover {
    background: var(--swiss-black);
    color: white;
    padding-left: 10px;
  }
  .log-entry:hover h3,
  .log-entry:hover small,
  .log-entry:hover span {
    color: white !important;
  }
  .log-entry:hover .arrow-icon {
    color: var(--swiss-red) !important;
    transform: translateX(5px);
  }

  .blog-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
  }
  .blog-content h2, .blog-content h3 {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }
  .blog-content blockquote {
    border-left: 4px solid var(--swiss-red);
    padding-left: 1.5rem;
    font-style: italic;
    color: #555;
    background: #f9f9f9;
    padding: 1rem 1rem 1rem 1.5rem;
  }

  .link-back {
    font-family: monospace;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    color: #666;
    transition: color 0.2s;
  }
  .link-back:hover { color: var(--swiss-red); }


.app-shell{
  height: 100vh;
  overflow: hidden;
}

.app-shell > .row{
  height: 100%;
}

.main-scroll{
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.no-scrollbar{
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar{
  width: 0;
  height: 0;
}


