html{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(45deg, #aaaaaa, #ffffff);
    background-attachment: fixed;
    background-size: cover;
}

body{
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: sans-serif;
    height: 100%;
}

mjr-login{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    background-color: #ffffff;
    margin: auto;
    box-shadow: 8px 8px 8px #00000055;
    border-radius: 16px;
}

mjr-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

mjr-form form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

mjr-logo{
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-wrap: wrap;
}

mjr-logo mjr-subtitle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-wrap: wrap;
    text-align: center;
}

mjr-form form input[type="text"]{
    padding: 16px;
    border: none;
    background-color: #00000011;
    border-radius: 16px;
    font-size: 16px;
    margin: 0px;
    box-shadow: 4px 4px 4px #00000055;
}

mjr-form form input[type="password"]{
    padding: 16px;
    border: none;
    background-color: #00000011;
    border-radius: 16px;
    font-size: 16px;
    margin: 0px;
    box-shadow: 4px 4px 4px #00000055;
}

mjr-form form input[type="submit"]{
    padding: 16px;
    border: none;
    background-color: #004488;
    color: #ffffff;
    border-radius: 16px;
    font-size: 16px;
    margin-top: 8px;
    box-shadow: 4px 4px 4px #00000055;
} mjr-form form input[type="submit"]:hover{
    padding: 16px;
    border: none;
    background-color: #0044aa;
    color: #ffffff;
    border-radius: 16px;
    font-size: 16px;
    margin-top: 8px;
    box-shadow: 4px 4px 4px #00000077;
}

mjr-login-error{
    color: #ff2525;
    margin-top: 16px;
}

header-panel {
    display: flex;
    flex-direction: row;
    background: #aaaaaa;
    padding: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

main-container {
    display: flex;
    flex: 1;
    background: linear-gradient(45deg, #aaaaaa, #ffffff);
}

left-panel {
    display: flex;
    flex-direction: column;
    width: fit-content;
    background: #888888;
}

content-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

mjr-dashboard{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    /*font-family: "Consolas";*/
}

header-panel-title{
    align-content: center;
    margin: 16px;
    font-weight: bold;
    font-size: 1.25rem;
}

header-panel form{
    align-content: center;
}

#header-panel-button{
    align-content: center;
}

left-panel form{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    text-wrap: wrap;
}

left-panel form input{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    margin-bottom: 8px;
    padding: 12px;
    border: none;
    outline: none;
    background: linear-gradient(#373737, #646464);
    color: #ffffff;
    flex-wrap: wrap;
    text-wrap: wrap;
}

left-panel form input:hover{
    text-decoration: underline;
    background: linear-gradient(#646464, #373737);
}

header-panel img {
    display: flex;
    flex-direction: row;
    align-self: center;
}

mjr-ticket-part{
    display: block;
    margin-top: 16px;
    background: linear-gradient(#44444477, #88888877);
    padding: 16px;
}

mjr-ticket-part-title{
    display: block;
    font-weight: bold;
    font-size: 1.25rem;
}

mjr-ticket-part-assigned-to{
    display: block;
    background: #ffffff25;
    color: 00000075;
    padding: 4px 8px;
    border-radius: 25px;
}

mjr-ticket-part-tags{
    display: block;
    font-size: 0.75rem;
    color: #000000aa;
}

mjr-ticket-part-error{
    display: block;
    color: #aa2525;
    background: linear-gradient(#ff8080, #ff6868);
    padding: 16px;
    margin-top: 16px;

}

/* For Mobiles */
@media only screen and (max-width: 720px) {
    left-panel {
        display: flex;
        flex-direction: column;
        width: 25vw;
        background: #888888;
    }

    left-panel form input {
        font-size: 0.75rem;
    }

    h1{
        font-size: 1.75rem;
    }

    p {
        font-size: 0.75rem;
    }

    header-panel img {
        width: auto;
        height: 40px;
    }

    header-panel-title {
        font-size: 1rem;
    }
}