
.bg-orange {
    background-color: #ff7316;
    color: white;
}

.bg-orange-light {
    background-color: #ffd1b3;
    color: white;
}

.bg-white {
    background-color: white;
    color: #ff7316;
}
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10%;
}

.login-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.login-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.login-title {
    text-align: center;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.login-form-label {
    color: #666;
    font-weight: 800;
    margin-bottom: 8px;
}

.login-form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    margin-bottom: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.login-form-control:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.1);
}

.login-form-control::placeholder {
    color: #999;
}

.btn-login {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 12px;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-login:hover {
    background: linear-gradient(135deg, #e55a2b, #e6851a);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    color: white;
}

.btn-login:active {
    transform: translateY(0);
}

.testtable {
    border-collapse: separate;
    border-spacing: 0;
    border-top: 1px solid grey;
    font-size: 0.875rem;
    line-height: 1.25rem;
    caption-side: bottom;
    text-indent: 0;
}

.testtable td,
.testtable th {
    margin: 0;
    border:0;
    border-bottom: 1px solid grey;
    white-space: nowrap;
}

.testtable-container {
    width: 90%;
    overflow-x: scroll;
    margin-left: 15em;
    overflow-y: visible;
    padding: 0;
}

.headcol {
    position: absolute;
    width: 15em;
    left: 0;
    top: auto;
    border:0;
    border-bottom: 1px solid;
    /*only relevant for first row*/
    margin-top: -1px;
    /*compensate for top border*/
    font-weight: 500;
    vertical-align: middle;
    padding: 1rem;
    border-color: hsl(214.3 31.8% 91.4%);
}

.testtable-row{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    border-bottom-width: 1px;
    border-color: hsl(214.3 31.8% 91.4%);
}

.testtable-body{
    border-color: hsl(214.3 31.8% 91.4%);
}

.test-result{
    vertical-align: middle;
    text-align: center;
    padding: 1rem;
    border:0;
    border-bottom: 1px solid;
    border-color:hsl(214.3 31.8% 91.4%);
}

.btn-new-result{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    --tw-ring-offset-color: hsl(22 100% 96%);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    background-color: hsl(22 100% 96%);
    border-color: hsl(214.3 31.8% 91.4%);
    border-width: 1px;
    border-radius: calc(var(--radius) - 2px);
    white-space: nowrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    height: 2.25rem;
    display: inline-flex;
    cursor: pointer;
}

@media (max-width: 576px) {
    .login-card {
        padding: 30px 25px;
        margin: 15px;
    }
}