/* layout */

body {
    overflow-y: scroll;
    cursor: default;
}

@media (min-width: 992px)
{
    .container {
        max-width: 1070px;
    }
}

.navbar-brand .logo {
    height: 38px;
}
@media (min-width: 992px)
{
    .navbar-brand .logo {
        height: 45px;
    }
}


/* table */

.table {
    font-variant-numeric: tabular-nums;
}

.table td, .table th {
    vertical-align: middle;
}

.table th {
    padding-top: 0.4em;
    padding-bottom: 0.4em;
}
.table td {
    height: 45px;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
}

.table .table-actions {
    width: 1px;
    white-space: nowrap;
}
.table .table-actions .btn {
    margin-right: 0.5em;
}
.table .table-actions .btn:last-child {
    margin-right: 0;
}


/* progress bar */

.progress {
    height: 1.5em;
    font-size: 1em;
}


/* delete confirmation */

.delete-confirmation {
    text-align: center;
    font-size: 1.2em;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}
.delete-confirmation .btn {
    margin-left: 0.4em;
    margin-right: 0.4em;
}


/* navbar */

.nav-link.active {
    text-shadow: 0 0 0 rgba(0,0,0, 1);
}


/* pagination */

.pagination {
    flex-wrap: wrap;
}


/* search bar */

.search-bar input {
    background: url("data:image/svg+xml,%3Csvg height='1024' width='973.125' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M960 832L710.875 582.875C746.438 524.812 768 457.156 768 384 768 171.969 596 0 384 0 171.969 0 0 171.969 0 384c0 212 171.969 384 384 384 73.156 0 140.812-21.562 198.875-57L832 960c17.5 17.5 46.5 17.375 64 0l64-64c17.5-17.5 17.5-46.5 0-64zM384 640c-141.375 0-256-114.625-256-256s114.625-256 256-256 256 114.625 256 256-114.625 256-256 256z' fill='gray'/%3E%3C/svg%3E") no-repeat;
    background-size: 1em;
    background-position: 0.75rem 0.65rem;
    padding-left: calc(0.75rem * 1.7 + 1em);
}


/* form label required */

.form-group > label.required::before, .form-group > .row > legend.required::before {
    content: "* ";
    font-weight: bold;
    color: red;
}


/* textarea */

textarea {
    min-height: 150px;
}


/* select */

select[multiple] {
    min-height: 200px;
}


/* file form field */

.custom-file-label::after {
    content: "┅";
}

.dropzone {
    min-height: 300px !important;
}
.dz-message {
    display: none;
}
.dropzone .dz-message {
    margin-top: 115px !important;
    font-weight: bold;

    display: block;
}


/* development warning */

.develop-warning {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='a' viewBox='0 0 8 8' width='24' height='24' patternUnits='userSpaceOnUse'%3E%3Cpath fill='rgba%28255%2C0%2C0%2C0.05%29' d='M0 0h4L0 4zm0 8l8-8v4L4 8z'/%3E%3C/pattern%3E%3C/defs%3E%3Cpath fill='url%28%23a%29' d='M0 0h24v24H0z'/%3E%3C/svg%3E");
    background-size: 30px;
}
