.layout-container {
    display: flex;
    flex-direction: column;
}

.layout-row {
    display: flex;
    flex-direction: row;
}
.layout-col {
    display: flex;
    flex-direction: column;
}
.layout-col > img {
  flex-shrink: 0;   /* Prevent shrinking */
  flex-grow: 0;     /* Prevent growing */
}
.xxxlayout-col > img {
    width: 100px;      /* fixed width */
    height: auto;      /* preserve aspect ratio */
    flex-shrink: 0;    /* prevent shrinking or stretching */
    align-self: flex-start; /* prevent flex stretch */
}
body {
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: darkgray;
    background-color: rgb(5, 5, 12);
}
.main_title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 20px;
}
/* Base link style */
a {
  color: #4da6ff;          /* bright but not neon */
  text-decoration: none;   /* cleaner look */
  transition: color 0.2s, text-decoration 0.2s;
}

/* Visited links */
a:visited {
  color: #9a7dff;          /* distinguish visited with a softer purple */
}

/* Hover / focus states */
a:hover,
a:focus {
  color: #66ccff;          /* brighter on hover */
  text-decoration: underline; /* underline only when hovered/focused */
}

/* Active link (when clicked) */
a:active {
  color: #ffcc66;          /* warm highlight on click */
}

/* Optional: increase readability for long links in blocks of text */
a {
  font-weight: 500;        /* slightly bolder without being heavy */
  letter-spacing: 0.2px;   /* subtle spacing */
}
.svg-logo-container {
    margin: 15px;
    height: 190px;
    width: 170px;
}
.svg-logo-container img {
    width: 170px;
    height: auto;
}
.ilink a {
    color: lightblue;
    text-decoration: none;
}
.ilink {
    display: inline;
}
.ilink a:visited {
    color: lightblue;
    text-decoration: none;
}
.ilink a:hover {
    color: lightblue;
    text-decoration: none; 
}
.ilink a:active {
    color: lightblue;
    text-decoration: none;
}
.ilink img {
    border: none;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-left: 4px;
}
