﻿/* /css/admin.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 1em;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
}

.banner {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
}

.content {
    width: 100%;
    margin-bottom: 1.5em;
}

/*-------------------------*/

.scroll-row {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 6px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0.7em;
    box-sizing: border-box;
}

    .scroll-row input {
        flex: 1 1 auto; /* flex-grow, flex-shrink, flex-basis */
        font-family: monospace;
        font-size: 1.2em;
        padding: 6px 8px;
        box-sizing: border-box;
        height: 40px;
        margin-right: 4px; /* remove margin here */
    }

    .scroll-row button {
        flex: 0 0 40px; /* fixed size buttons */
        padding: 0;
        height: 40px;
        font-size: 1em;
        cursor: pointer;
        border: 1px solid black;
        background: #eee;
    }

        .scroll-row button:not(:last-child) {
            margin-right: -1px; /* overlap borders between buttons */
        }

        .scroll-row button:last-child {
            margin-right: 0;
        }

    .scroll-row .material-icons {
        font-size: 24px;
        vertical-align: middle;
    }


/*-------------------------*/

#passWord, #newPassWord, #saveButton, .add-button {
    width: 100%;
    padding: 0.75em;
    margin-bottom: 0.5em;
    font-size: 1.1em;
    font-weight: bold;
    box-sizing: border-box;
    cursor: pointer;
}

#saveStatus {
    margin-top: 1em;
    text-align: center;
    font-weight: bold;
}

hr{
    margin-bottom:40px;
}

