@import url(//fonts.googleapis.com/css?family=Muli);


/* Base styles for the account app */

:root {
    --primary-blue: #0074D9;
    --primary-blue-dark: #005fa3;
    --green-light: #81ce81;
    --yellow-light: #faffae;
    --alice-blue: #f0f8ff;
    --gray-light: #d3d3d3;
    --basic-white: #ffffff;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    font-family: 'Muli', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight:normal;
    display: flex;
}

body {
    margin:0;
    padding:0;
    font-family:helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    /*flex-wrap: wrap;*/
    justify-content: center;
    width: 100%;
    height: 100%;
}

p {
    line-height: 1.8;
    display: flex;
    justify-content: center;
}

a {
    color:#0074D9;
    text-decoration:none;
    /*white-space: pre;*/
}

a:hover {
    color:var(--primary-blue);
}

h1 {
    border-bottom:1px solid #fff;
    padding:0 0 10px 0;
    margin:10px 0 20px 0;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

h2 {
    margin:30px 0 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

ol {
    line-height:1.5;
}


#content {
    padding: 30px 20px;
}

form {
    overflow:auto;
}

form p {
    width:100%;
    overflow:auto;
    margin-bottom:20px;
    margin-top:30px;
}

/* Inputs/labels are styled by Bootstrap (form-label, form-control) */

.errorlist {
    color:#cc0033;
    float:left;
    clear:both;
    padding-left:10px;
}
.helptext {
    margin:0 0 20px 0;
    color:#aaa;
    clear:both;
    float:left;
    font-size:13px;
}


/* messages */

ul.messages {
    margin:10px 100px;
    padding:0;
    list-style-type:
    none;
}
ul.messages li.success,
ul.messages li.warning,
ul.messages li.error,
ul.messages li.info {
    margin:0;
    padding:14px 20px;
    list-style:none;
    color:#fff;
}

ul.messages li.success { background:#81ce81; }
ul.messages li.success a { color:#0ac33e; }

ul.messages li.error { background:#a30029; color:#e9828e; }
ul.messages li.error a { color:#e9828e; }

ul.messages li.info { background:#faffae; color:#696b4e; }
ul.messages li.info a { color:#1586de; }

ul.messages li.warning { background:#de9404; }
ul.messages li.warning a { color:#f49000; }

ul.messages li a.close {
    color:white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin:0;
    float:right;
    opacity:1;
    border:0;
    box-shadow:none;
    text-shadow:none;
}

/* users */

#people-list img {
    width:180px;
    height:180px;
    border-radius:50%;
    margin-bottom:20px;
}
#people-list .user {
    width:180px;
    float:left;
    overflow:auto;
    padding:10px;
}
#people-list .info { text-align:center; }
img.user-detail {
    border-radius:50%;
    float:left;
}
.profile-info {
    float:left;
    overflow:auto;
    margin-right:20px;
}
.image-container { margin-top:40px; }

/* actions */

.action {
    clear:both;
    overflow:auto;
}
.action .images {
    float:left;
    margin:0 10px 10px 0;
}
.action .date {
    font-style:italic;
    color:#ccc;
}


.button-primary {
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

/* htmx request indicator */
.htmx-indicator {
    display: none;
}
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
    display: inline-block;
}
