html, body {
    font-family: 'Roboto', sans-serif;
}

a, .btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #2C3E50;
}

.login-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
}

.login-logo img {
    max-height: 120px;
    margin-bottom: 20px;
}

.login-title {
    font-size: 24px;
    font-weight: bold;
    color: #2C3E50;
    margin-bottom: 5px;
}

.login-subtitle {
    color: #7F8C8D;
    margin-bottom: 30px;
}

.login-field {
    margin-bottom: 16px;
}

.login-button {
    margin-top: 16px;
    font-weight: bold;
    font-size: 16px;
    height: 48px;
}

.login-error {
    color: #e74c3c;
    font-size: 13px;
    margin-bottom: 10px;
    padding: 8px;
    background: #fdecea;
    border-radius: 6px;
}

.comparison-table-container {
    overflow: auto;
    max-height: 500px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.comparison-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 13px;
}

.comparison-table th {
    background: #2C3E50;
    color: white;
    padding: 8px 12px;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 1;
    font-weight: 600;
}

.comparison-table td {
    padding: 6px 10px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comparison-table td:hover {
    background: #e3f2fd;
}

.comparison-table tr:nth-child(even) {
    background: #F0F0F0;
}

.row-number-col {
    width: 60px;
    min-width: 60px;
    background: #f5f5f5 !important;
    font-weight: bold;
    text-align: center;
    color: #555;
}

.diff-cell {
    background: rgb(255, 200, 200) !important;
    font-weight: bold;
}

.detail-modal {
    width: 500px;
    max-width: 90vw;
    border-radius: 12px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

/* Davalillo Hub Footer Styles */
.davalillo-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 24px 32px 20px;
    background: linear-gradient(135deg, #1a233b 0%, #0c1120 100%);
    border-top: 1px solid rgba(212, 240, 30, 0.1);
    border-radius: 12px 12px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.davalillo-footer::before {
    content: 'Davalillo Hub  ↑';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 18px;
    background: #0c1120;
    border: 1px solid rgba(212, 240, 30, 0.15);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    color: #6b7280;
    font-size: 10px;
    font-family: 'Fira Code', monospace;
    letter-spacing: 0.5px;
    white-space: nowrap;
    pointer-events: none;
}

.davalillo-footer::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #d4f01e;
    border-radius: 2px 2px 0 0;
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.davalillo-footer:hover,
.davalillo-footer:hover::after {
    transform: translateY(0);
}

.davalillo-footer:hover::after {
    opacity: 1;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: #d4f01e;
    color: #0c1120;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    font-family: 'Fira Code', monospace;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 10px;
    color: #6b7280;
    font-family: 'Fira Code', monospace;
}

.footer-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-info {
    flex: 1;
    text-align: center;
}

.footer-text {
    font-size: 13px;
    color: #9ca3af;
    margin: 0 0 4px 0;
}

.footer-text strong {
    color: #d4f01e;
    font-weight: 600;
}

.footer-subtext {
    font-size: 10px;
    color: #6b7280;
    margin: 0;
    font-family: 'Fira Code', monospace;
}

.footer-links {
    display: flex;
    gap: 12px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(212, 240, 30, 0.1);
    border: 1px solid rgba(212, 240, 30, 0.2);
    border-radius: 8px;
    color: #d4f01e;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-link:hover {
    background: rgba(212, 240, 30, 0.15);
    border-color: rgba(212, 240, 30, 0.3);
    transform: translateY(-1px);
}

.footer-icon {
    width: 14px;
    height: 14px;
}

/* Login Page Branding Styles */
.login-branding {
    margin-top: 24px;
    padding-top: 20px;
}

.branding-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    margin-bottom: 16px;
}

.branding-link {
    text-decoration: none;
    display: block;
}

.branding-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(212, 240, 30, 0.05);
    border: 1px solid rgba(212, 240, 30, 0.15);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.branding-badge:hover {
    background: rgba(212, 240, 30, 0.08);
    border-color: rgba(212, 240, 30, 0.25);
    transform: translateY(-1px);
}

.badge-icon {
    width: 28px;
    height: 28px;
    background: #d4f01e;
    color: #0c1120;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    font-family: 'Fira Code', monospace;
}

.badge-text {
    font-size: 12px;
    color: #555;
}

.badge-text strong {
    color: #2C3E50;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .davalillo-footer {
        padding: 20px 16px;
    }

    .davalillo-footer::before {
        content: '↑  Davalillo Hub';
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-divider {
        width: 100%;
        height: 1px;
    }

    .footer-info {
        order: -1;
    }
}

