/*
 * 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.
 *


 */

.body-wrapper {
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #434343;
}

.form-wrapper {
    max-width: 318px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem;
    text-align: center;
    color: white;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-checkbox {
    margin-bottom: 1rem;
}

.form-actions {
    margin-top: 1rem;
}

.form-errors {
    background-color: tomato;
    padding: 1rem 1rem 1rem 2rem;
    color: white;
    border-radius: 0.5rem;
}

.alert {
    background-color: tomato;
    padding: 1rem;
    color: white;
    border-radius: 0.5rem;
}
.notice {
    background-color: orange;
    padding: 1rem;
    color: white;
    border-radius: 0.5rem;
}

.password-rules {
    text-align: left;
    margin-bottom: 0.3rem;
}

.form-field__input {
    width: 300px;
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    border: 1px solid gray;
}

.form-field__label {
    text-align: left;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.margin-bottom-2 {
    margin-bottom: 1rem;
}

.button-primary {
    background-color: #ffcc26;
    color: black;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    line-height: 1.5rem;
}

.button-primary:hover {
    cursor: pointer;
    opacity: 0.8;
}

.button-secondary {
    text-decoration: none;
    color: white;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: 1px solid white;
}

.button-secondary:hover {
    cursor: pointer;
    opacity: 0.8;
}

table {
    border-collapse: collapse;
    width: 100%;
}

thead {
    background-color: #f2f2f2; /* Light gray background */
}

th, td {
    border: 1px solid #dddddd; /* Light gray border */
    padding: 8px;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #ffffff; /* White background for even rows */
}

tr:nth-child(odd) {
    background-color: #f9f9f9; /* Light gray background for odd rows */
}

th {
    background-color: #4CAF50; /* Green header background */
    color: white; /* White header text color */
}

#createdAt {
    width: 15em;
}

#email {
    width: 20em;
}

#phoneNumber {
    width: 10em;
}

#pagyBar {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    background-color: white;
    border: 1px solid black;
}
