﻿body,
html {
    padding: 0;
    margin: 0;
    height: 100%;
}

body {
    background: black;
    color: white;
    font-family: "Roboto", sans-serif;
}
a {
    color: white;
    text-decoration: none;
}
a:hover {
    color: #eb9b34;
}

.login-link {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
}

.outerWrap {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
}

.temp-layout .logo {
    display: block;
    margin: 0 auto 100px auto;
    width: 400px;
    max-width: 100%;
}

.clear {
    border: 1px solid white;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 25px;
    display: block;
}
.clear:hover {
    background: white;
    color: black;
}

.cancel {
    background: rgba(255, 255, 255, 0.2);
}

.cancel:hover {
    background: rgba(255, 255, 255, 0.4);
    color: white;
}

.delete {
    background: rgb(200, 0, 0) !important;
    color: white;
}

label,
input,
select,
textarea,
button[type="submit"],
.full-button {
    display: block !important;
    width: 100%;
}

input,
select,
textarea,
.date-picker,
.full-button,
.clear,
.delete,
.cancel {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0 10px;
    border-radius: 5px;
    height: 44px;
    line-height: 44px;
    display: block;
}

textarea {
    resize: none;
    line-height: 1.6em;
    padding: 10px;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

button[type="submit"],
.full-button,
.cancel,
.delete,
.clear {
    border: none;
    border-radius: 25px;
    height: 44px;
    line-height: 44px;
    font-weight: 500;
    text-align: center;
}

button[type="submit"] {
    background: #eb9b34;
    color: black;
}

button[type="submit"]:hover,
.full-button:hover {
    background: #9d5900;
    color: white;
}

.comingsoon {
    font-size: 2em;
    margin-bottom: 100px;
}

.navbar {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand img {
    max-height: 50px;
}

.contentWrap {
    padding-top: 100px;
    padding-bottom: 20px;
}

.login-wrap {
    max-width: 400px;
    margin: 0 auto;
}

label {
    font-size: 0.9em;
    font-weight: 400;
}

.no-items {
    background: #171717;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
}

.flex {
    display: flex;
    gap: 1em;
}

.flex-1 {
    flex: 1;
}

.list {
    max-width: 100%;
}
.list .list-item {
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    border-radius: 5px;
}

.list .list-item.deleted-true {
    border: 3px solid rgb(150, 0, 0);
}

.list .list-item:hover {
    background: rgba(255, 255, 255, 0.4);
}

.list .list-item:not(:last-of-type) {
    margin-bottom: 10px;
}

.list .list-item .overlay-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
}

.error:not(:empty) {
    background: rgb(200, 0, 0);
    padding: 10px;
    display: block;
}

.error ul {
    margin: 0;
}

.delete:hover {
    background: rgb(144, 0, 0) !important;
    color: white;
}

.log-application {
    font-weight: 500;
    margin-bottom: 1em;
}

.log-list-subtitle {
    margin-bottom: 1em;
    opacity: 0.65;
}

.log-list-filename {
    font-family: monospace;
    font-size: 0.7em;
    color: #c6832d;
}
.log-list-filename .line-number {
    color: rgba(255, 255, 255, 0.5);
}

.log-title {
    font-size: 1.2em;
    word-break: break-all;
}
.log-subtitle {
    margin-bottom: 2em;
    opacity: 0.65;
    word-break: break-all;
}

.log-item-details .log-item-details-row:first-of-type,
.stack-trace-line:first-of-type {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}
.log-item-details .log-item-details-row:last-of-type,
.stack-trace-line:last-of-type {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}
.log-item-details .log-item-details-row,
.stack-trace-line {
    margin-bottom: 1px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
}

.stack-trace-line {
    display: block !important;
    font-family: monospace;
    font-size: 0.8em;
    word-break: break-all;
}
.stack-trace-line .file-name {
    color: #c6832d;
}

.stack-trace-line .file-name .line-number {
    color: #9b9b9b;
}

.log-type-name {
    font-size: 0.8em;
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    display: inline-block;
}
.log-type-name:not(.non-absolute) {
    position: absolute;
    top: 10px;
    right: 10px;
}
.log-type-name.exception {
    background: rgb(180, 91, 31);
}
.log-type-name.crash {
    background: rgb(200, 0, 0);
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    max-width: 100%;
    min-width: 0;
}

.toggle-button {
    cursor: pointer;
    font-size: 1.2em;
}

.filters-page-wrap {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

@media (min-width: 1024px) {
    .filters-page-wrap {
        flex-direction: row;
    }

    .filter-form {
        width: 500px !important;
    }
}

.filter-form {
    width: 100%;
    margin-top: 1em;
}
.filter-form.collapsed {
    display: none;
}

.items-wrap {
    flex: 1;
}

#filters .filter-row:not(:last-of-type) {
    margin-bottom: 10px;
}
