﻿body {
    margin: 0;
    padding: 0;
}

.page {
    display: flex;
    flex-direction: column;
}

.show {
    display: block
}

.hide {
    display: none
}

h3{
    font-size:18px;
}

.btn-info, .btn-primary,
.btn-info:disabled, .btn-primary:disabled,
.btn-info:hover, .btn-primary:hover,
.btn-info:active, .btn-primary:active,
.btn-info:focus, .btn-primary:focus {
    background-color: #f3d932 !important;
    border: 1px solid #e2ca2e !important;
    color: #212121 !important;
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.input-group .form-group {
    margin-left:4px;
}

.page-title{
    margin-top:10px;
    margin-bottom:20px;
}

.top-5px{
    margin-top:5px;
}
.top-10px{
    margin-top:10px;
}

.top-7rem {
    padding-top: 7rem;
}

.bottom-5px {
    margin-bottom: 5px;
}

.bottom-10px {
    margin-bottom: 10px;
}
span.oi-chevron-top:hover,
span.oi-chevron-right:hover,
span.oi-chevron-bottom:hover {
    cursor: pointer;
}

.oi-comment-square {
    top:5px;
}
.oi-trash{
    cursor:pointer;
}

.red {
    color: red !important;
}

@media (max-width: 641px) {
    .header, .main {
        padding: 10px 10px;
    }
    .header h3, .main h3{
        font-size:medium;
        font-weight:bold;
    }
}

.login-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/images/kanari-konfetti.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: white;
    text-align: center;
}

.login-image {
    width: 70%; /* ⬅️ half the width of the container */
    display: block;
    margin: 0 auto 1rem auto; /* center horizontally */
}

.login-info {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: bold; /* ⬅️ bold text */
    color: #333;
}

.login-form-group {
    text-align: left;
}

.login-message {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 15px;
    color: red;
    font-weight: bold;
}

.login-header-hover {
    position: relative;
    cursor: help;
}

.build-info-tooltip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.5;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    transition-delay: 1s;
}

.login-header-hover:hover .build-info-tooltip {
    opacity: 1;
}

.input-group .btn-outline-secondary {
    border-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group .oi {
    font-size: 1.1rem;
}