﻿
/*
--------------------------------------------------------------------------------------------
----------------------------------    mainlayout.css    ------------------------------------
--------------------------------------------------------------------------------------------
        Branding: Site Logo, Github Link, SmartAdmin Subdomain Link
--------------------------------------------------------------------------------------------
*/
/* JEO3 Logo */
.jeo-logo {
    width: 115px;
    height: 28px;
    margin-left: -20px;
}

.github-badge {
    margin: 0px 0px 0px 0px;
    font-size: 5pt;
    height: 15px;
    width: 25px;
    padding: 0px 0px 0px 0px;
}

.github-admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 25px !important;
    padding: 3px 8px;
    margin-top: 0px;
    margin-right: 22px;
    border-radius: 6px;
    background-color: #1a1f2c;
    color: #ffffff !important;
    font-family: "Consolas", "Monaco", monospace;
    font-size: 8px;
    font-weight: 500;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-animation: neon2 1.3s ease-in-out infinite alternate;
    -moz-animation: neon2 1.3s ease-in-out infinite alternate;
    animation: neon2 5s ease-in-out infinite alternate, horizontal-shake 0.5s ease-in-out;
}

    .github-admin-badge:hover {
        background-color: #24292e;
        /* Classic GitHub Dark */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        border-color: rgba(255, 255, 255, 0.25);
        animation: horizontal-shake 0.5s ease, neon1 0.5s ease-in-out infinite alternate;
    }

    .github-admin-badge svg {
        transition: transform 0.1s ease;
    }

    .github-admin-badge:hover svg {
        transform: scale(1.15);
    }

.github-admin-badge-text {
    font-size: 9pt;
}

.jeo-smartadmin-link {
    font-family: "Consolas", "Monaco", monospace;
    /* Monospace matches the matrix theme background! */
    font-size: 14px;
    text-decoration: none !important;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    background: var(--jeo-gradient-silver2);
    color: red;
    height: 30px !important;
    margin-top: 1px;
}

    /* Subtle gray for the utility domain */
    .jeo-smartadmin-link .domain {
        color: #718096;
        font-weight: 400;
    }

    /* Bold accent for your actual repository */
    .jeo-smartadmin-link .repo {
        color: #e53e3e;
        /* Keeps a variant of your red theme, but structured */
        font-weight: 600;
    }

    /* Interactive Hover Effect */
    .jeo-smartadmin-link:hover {
        background: rgba(229, 62, 62, 0.08);
        /* Light tint of your red theme */
        box-shadow: inset 0 0 0 1px rgba(229, 62, 62, 0.2);
    }

        .jeo-smartadmin-link:hover .domain {
            color: #2d3748;
        }
