body {
    font-family: Roboto, sans-serif;
  display: flex;
  flex-direction: row; /* Align items horizontally */
  align-items: flex-start; /* Align items at the top */
}

#mainFrame {
  flex: 8
}

#rssFeedContent {
  flex: 1; /* Take available space */
  max-width: 400px; /* Adjust width as necessary */
  padding: 10px; /* Optional padding for aesthetics */
  overflow-y: auto; /* Enable scrolling if content overflows */
  background-color: #fefefe;
    color: #8db822;
  font-size: 12px;
}

.rssFeedContentTitle {
    color: steelblue;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

#footerContent {
  width: 100%; /* Make footer full width */
  text-align: center; /* Center align footer content */
  margin-top: 20px; /* Space above footer */
  clear: both; /* Clear any floats */
}

/* Full-width input fields */
input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-weight: bold;
}

form i {
    margin-left: -30px;
    cursor: pointer;
}

form a {
    color: steelblue;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

/* Set a style for all buttons */
button {
    background-color: #8db822;
    font-size: larger;
    font-variant-caps: all-small-caps;
    font-weight: bold;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

button:hover {
    opacity: 0.8;
}

.header {
    padding: 16px 0 32px 0;
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    justify-content: flex-start;
    align-items: center;
}

.header label {
    font-size: xx-large;
    font-weight: bold;
}

.success {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 2px solid #8db822;
    background-color: #F3FFD5FF;
    color: #8db822;
    box-sizing: border-box;
}

.reset_password {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 2px solid #8db822;
    background-color: #F3FFD5FF;
    color: #8db822;
    box-sizing: border-box;
}

.error {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 2px solid firebrick;
    background-color: #FFA4A4FF;
    color: firebrick;
    box-sizing: border-box;
}

.container {
    padding: 32px;
}

div.forgot_password {
    margin-top: 16px;
    display: flex;
    flex-direction: row-reverse;
}

/* The Modal (background) */
.modal {
    display: block; /* Hidden by default */
    /* position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    right: 0;
}

/* Modal Content/Box */
.modal-content {
    max-width: 450px;
    background-color: #fefefe;
    margin: 10% auto 1% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 0;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

.language-selector {
    width: 30px;
    height: 20px;
}

body {
    background-color: #ccc; /* Black w/ opacity */
}

footer {
    width: 98%;
    color: #888;
    font-weight: bold;
    padding-bottom: 1.5rem !important;
    display: flex !important;
    justify-content: center !important;
    text-decoration: none;
    flex-direction: column;
    align-items: center;
}

footer a {
    color: #888;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    margin-left: 4px;
    margin-right: 4px;
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    span.password {
        display: block;
        float: none;
    }
}

.loading-spinner {
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.disabled-button {
    pointer-events: none;
    background-color: #ccc;
    color: #999;
}
