:root {
    --primary-color: #0060AA;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-row {
    background-color: #cdcdcd;
    color: black;
}

.row>* {
    padding-right: 0;
    padding-left: 0;
}

.job-summary {
    overflow: hidden;
}

.bg-blue {
    background-color: #1562d3;
    color: white;
}

.card {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card .card-field {
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
}

.card .card-field:last-child {
    border-bottom: none;
}

.card-label {
    font-weight: 600;
    margin-right: 0.5rem;
    color: #6c757d;
}

.severity-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none;
        max-height: 500px;
        overflow: auto;
    }
}

.critical {
    background-color: #e90016;
    color: white;
}

.non_critical {
    background-color: #ffc717;
    color: white;
}

.non_conformance {
    background-color: #1562d3;
    color: white;
}

.recommendation {
    background-color: #8000ff;
    color: white;
}

.informational {
    background-color: #2a3539;
    color: white;
}

footer {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.2s ease-in-out;
    max-width: 600px;
    width: 100%;
}

.logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.logo-footer {
    max-height: 23px;
}

.image {
    max-height: 10vh;
    display: flex;
    position: relative;
    max-width: 100%;
    object-fit: contain;
}

.image-asset {
    max-height:40vh;
    display: flex;
    position: relative;
    object-fit: contain;
    width: 100%;
}

.icon {
    max-width: 20px;
    max-width: 20px;
}

.flex-end {
    justify-content: flex-end;
    align-items: center;
}

.footer-link {
    display: flex;
    align-items: flex-end;
}

.cursor-pointer {
    cursor: pointer;
}

[x-cloak] {
    display: none !important;
}

.object-cover {
    object-fit: cover;
}

.border-dashed {
    border-style: dashed !important;
}

.image-preview {
    max-width: 250px;
    max-height: 250px;
    min-width: 250px;
    min-height: 250px;
}

::placeholder {
    color: #999aa0;
}

.text-grey {
    color: #999aa0;
}

.status-icon {
    width: 10%;
    fill: white;
}

.alert {
    color: white;
    min-width: 300px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
}

.fixed-top {
    z-index: 99999999;
}

.success {
    background-color: #009257;
}

.fail {
    background-color: #f30036;
}

.w-90 {
    width: 90%;
}

.w-95 {
    width: 95%;
}

.w-10 {
    width: 10%;
}

.w-15 {
    width: 15%;
}

.w-20 {
    width: 20%;
}

.btn-fieldmagic {
    background-color: #006abd;
    color: white;
}

.btn-fieldmagic:hover {
    background-color: #005392;
    color: white;
}

.grecaptcha-badge {
    visibility: hidden;
}

.dropdown-menu {
    min-width: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-item {
    text-overflow: ellipsis;
    overflow: hidden;
}

.dropdown-icon {
    width: 10%;
    max-height: 20px;
}

.cross {
    min-width: 15px;
    max-width: 15px;
    color: white;
}

.cross-button {
    background-color: #f30036;
    border: none;
}

.cross-button:focus {
    background-color: #f73d66;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}