body {
    margin: 0px;
    padding: 0px;
}

main {
    min-height: 100vh;
    padding: 0px;
    margin: 0px;
}

a.js-call {
    text-decoration: none;
}

.user-profile-main,
.guideline-main,
.home-main {
    display: grid;
    grid-template-columns: 1fr 800px 1fr;
}

.side-column-left,
.side-column-right {
    background-color: #ffffff;
    background-repeat: repeat-y;
    background-size: 30px auto;
}

.side-column-right {
    background-image: url('/images/EEEC.Bkg.RedToTransparent.png');
    background-position: top left;
}

.side-column-left {
    background-image: url('/images/EEEC.Bkg.TransparentToRed.png');
    background-position: top right;
}

.center-column {
    display: flex;
    flex-direction: column;
    background-color: #ff0100;
    text-align: left;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.5;
    align-items: center;
    padding-left: 20px;
    padding-right: 20pxl
}

.center-colum ul {
    padding-left: 0;
}

.center-column p {
}

#welcome-row {
    position: relative;          /* Anchor point for the absolute login links */
    display: flex;
    justify-content: center;     /* Centers the image container */
    align-items: flex-start;
    margin-top: 30px;
    margin-bottom: 50px;
    width: 100%;
}

#welcome-row img.image-welcome {
    margin-top: 30px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 350px;
    height: 141px;
}

/* Image styling */
#welcome-row .image-welcome-containter {
flex-shrink: 0;
}

#welcome-row .image-welcome {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Login/Register buttons container */
#welcome-row #login-buttons {
    position: absolute;
    right: 30px;                    /* Sticks to the right edge of center-column */
    top: 0;                      /* Aligns with top edge of welcome image */
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

/* Regular text links */
#welcome-row #login-buttons a {
  color: #0066cc;
  text-decoration: none;
  font-size: 1rem;
  font-weight: normal;
}

#welcome-row #login-buttons a:hover {
  color: #FFFFFF;   /* #004080; */
  text-decoration: none;
}

/* Basic site-wide form styling */
.simple-form {
    background: white;
    padding: 30px;
    padding-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.form-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px; /* Space between input and button */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Crucial: includes padding in the width calculation */
}

.button-container {
    display: flex;
    justify-content: flex-end; /* 2. This pushes content (the button) to the right */
}

.submit-button {
    padding: 8px 20px;
    color: #ffffff;
    background-color: #ff0100;
    border: 1px solid #ff0100;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #ffffff;
    color: #ff0100;
}
