
/* === page styles === */
div.fixed {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    border: 3px solid #3885c2;
    margin: 4px 4px 4px 4px;
  }

.main-container {
    position: relative;
}

.bg-dark {
    background-color:#3885c2 !important;
  }

/* TODO: improve line breaks for narrow windows */
/* p, label {
    overflow-wrap: break-word;
    word-wrap: break-word;
} */

footer {
    background-color: #ffffff!important;
    color: #3885c2;
    padding: 15px;
    align-content: center;
    display: block;
    font-size: 1rem;
  }

.left-margin {
    position: fixed;
    width: "50px";
}

/* === overview / background === */
.elected-name {
    color: #3885c2;
    font-style: italic;
    font-weight: 500;
}

.issue-title {
    color: darkslategrey;
    font-weight: 400;
    font-style: italic;
    font-size: larger;
}

.grey-text {
    color: dimgray ;
    font-weight: 400;
    font-style: italic;
    font-size: small;
}

.background-hint-text {
    font-style: italic;
    font-size: small;
    text-align: right;
    font-weight: 400;
}

.background-hint-text:hover {
    font-style: italic;
    font-size: small;
    text-align: right;
    font-weight: 500;
}

.check-prompt {
    color: black;
    font-weight: bolder;
}

.check-input {
    min-width: fit-content;
}

.check-label {
    overflow-wrap: break-word;
    display: inline;
}

.content-divider {
    background-color: #3885c2;
    color: #ffffff;
    width: 100%;
    font-size: large;
    font-weight: 500;
    padding: 4px;
}

.form-label-unspaced {
    margin-bottom: 0;
    margin-top: 0;
    font-style: italic;
}

.form-label-spaced {
    margin-bottom: 0;
    margin-top: 1rem;
    font-style: italic;
}

.label-explain{
    font-weight: lighter;
    font-size: small;
    font-variant: initial;
    display: inline-block;
    margin-bottom: 0;
    position: relative;
}

.issue-text {
    color: black;
    font-size: medium;
}

.background-text {
    color: black;
    font-size: small;
}

.motto-text {
    margin-top: 0;
    margin-bottom: 0;
}

/* === form === */

/* "Input Type=Text" and "textarea" should stay mostly the same */
input[type=text] {
    width: 100%;
    padding: 6px 10px;
    margin: 4px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }

textarea {
    width: 100%;
    padding: 6px 10px;
    margin: 2px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    resize: both;
  }

  input[type=email] {
    width: 100%;
    padding: 6px 10px;
    margin: 2px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: both;
  }

input[type=submit] {
    background-color: #3885c2;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
  }

select {
    border-radius: 4px;
    border: 1px solid #ccc;
  }