/* ==========================================================================
   Vellox Group Theme - Login & Reset Password Page Styles
   Shared styles for login-related pages (Login.aspx, ResetPassword.aspx)
   ========================================================================== */

/* ==========================================================================
   Base Component Styles (Copied from defaults.css)
   These are the base button, checkbox, and form-control styles needed
   for login pages since defaults.css is not loaded on login pages.
   ========================================================================== */

/* Button Styles - Vellox Group Theme
   ========================================================================== */

/* Primary Button - Default State */
.vg-theme .btn,
.vg-theme .btn-default,
.vg-theme input[type="submit"].btn,
.vg-theme input[type="button"].btn {
    background-color: #323E3E; /* Tarmac */
    color: #EAE9E5; /* Concrete */
    border: 1px solid #323E3E;
    border-radius: 0;
    font-weight: 500;
    text-transform: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

/* Button - Hover State */
.vg-theme .btn:hover,
.vg-theme .btn-default:hover,
.vg-theme input[type="submit"].btn:hover,
.vg-theme input[type="button"].btn:hover {
    background-color: #465152; /* Mid Tarmac */
    color: #FFFFFF; /* White */
    border-color: #465152;
}

/* Button - Active/Press State */
.vg-theme .btn:active,
.vg-theme .btn-default:active,
.vg-theme input[type="submit"].btn:active,
.vg-theme input[type="button"].btn:active {
    background-color: #7E8484; /* Light Tarmac */
    color: #FFFFFF; /* White */
    border-color: #7E8484;
}

/* Button - Focus State */
.vg-theme .btn:focus,
.vg-theme .btn-default:focus,
.vg-theme input[type="submit"].btn:focus,
.vg-theme input[type="button"].btn:focus {
    outline: 2px solid #465152;
    outline-offset: 2px;
}

/* Button - Disabled State */
.vg-theme .btn:disabled,
.vg-theme .btn-default:disabled,
.vg-theme .btn.disabled,
.vg-theme .btn-default.disabled,
.vg-theme input[type="submit"].btn:disabled,
.vg-theme input[type="button"].btn:disabled {
    background-color: #EAE9E5; /* Concrete */
    color: #7E8484; /* Light Tarmac */
    border-color: #EAE9E5;
    cursor: not-allowed;
    opacity: 1;
}

/* Checkbox Styles - Vellox Group Theme
   ========================================================================== */

/* Checkbox base styles */
.vg-theme input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 1px solid #323E3E; /* Tarmac */
    border-radius: 0;
    background-color: #FFFFFF; /* White */
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    transition: border-color 0.2s ease;
    margin-top: -2px;
}

/* Checkbox - Focus State */
.vg-theme input[type="checkbox"]:focus {
    outline: 2px solid #465152;
    outline-offset: 2px;
}

/* Checkbox - Hover (Non-disabled) */
.vg-theme input[type="checkbox"]:not(:disabled):hover {
    border-color: #7E8484; /* Light Tarmac */
}

/* Checkbox - Active (Checked) */
.vg-theme input[type="checkbox"]:checked {
    background-color: #323E3E; /* Tarmac */
    border-color: #323E3E;
}

/* Checkbox - Checkmark */
.vg-theme input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
}

/* Checkbox - Disabled (Unchecked) */
.vg-theme input[type="checkbox"]:disabled {
    border-color: #7E8484; /* Light Tarmac */
    background-color: #EAE9E5; /* Concrete */
    cursor: not-allowed;
}

/* Checkbox - Disabled (Checked) */
.vg-theme input[type="checkbox"]:checked:disabled {
    background-color: #EAE9E5; /* Concrete */
    border-color: #7E8484; /* Light Tarmac */
}

.vg-theme input[type="checkbox"]:checked:disabled::after {
    color: #7E8484; /* Light Tarmac */
}

/* Form Input Styles - Vellox Group Theme
   ========================================================================== */
.vg-theme .form-control {
    border: 1px solid #ccc;
    border-radius: 0;
    color: #323E3E; /* Tarmac */
    margin: 1px 0;
    background-color: #FFFFFF; /* White */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vg-theme .form-control:disabled,
.vg-theme .form-control[disabled] {
    color: #7E8484; /* Light Tarmac */
    border-color: #7E8484; /* Light Tarmac */
    background-color: #EAE9E5; /* Concrete */
}

.vg-theme .form-control:focus {
    border-color: #465152; /* Mid Tarmac */
    box-shadow: 0 0 0 2px rgba(70, 81, 82, 0.1); /* Mid Tarmac @ 10% */
    outline: none;
}

.vg-theme .form-control::placeholder {
    color: #7E8484; /* Light Tarmac */
}

/* Telerik Controls - RadGrid
   ========================================================================== */

/* Alternating Row - Override default Bootstrap skin color with Light Concrete */
.RadGrid .rgAltRow,
.RadGrid_Bootstrap .rgAltRow,
div.RadGrid tr.rgAltRow {
    background-color: #F7F6F4; /* Light Concrete */
}

/* ==========================================================================
   End of Base Component Styles
   ========================================================================== */

/* Utility Classes
   ========================================================================== */
.d-flex {
    display: flex;
}

.mt-1 {
    margin-top: 1rem;
}

.mr-1 {
    margin-right: 1rem;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

/* Page Background - Vellox Group Theme
   Override the default html.login > body background from styles.css
   ========================================================================== */
html.login {
    width: 100%;
    overflow-x: hidden;
}

html.login > body.vg-theme,
body.vg-theme {
    background-image: none !important;
    background: #EAE9E5 !important; /* Concrete */
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

/* General Anchor Styles - Vellox Group Theme
   Increased specificity to override html.login a from styles.css
   Excludes .btn and .btn-default classes to avoid affecting button styling
   ========================================================================== */
html.login body.vg-theme a:not(.btn):not(.btn-default) {
    color: #0066CC; /* Default hyperlink blue */
    text-decoration: none;
}

html.login body.vg-theme a:not(.btn):not(.btn-default):hover {
    color: #0052A3; /* Darker blue on hover */
    text-decoration: underline;
}

/* Light Concrete Triangle Background Element
   Positioned at bottom-left corner behind the V logo
   ========================================================================== */
.vg-corner-triangle {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-right: 320px solid transparent;
    border-bottom: 550px solid #FFFFFF; /* White */
    pointer-events: none;
    z-index: 1; /* Ensure triangle is above background elements */
}

/* Vellox V Logo Background Element
   Solid V logo positioned at bottom-left corner
   ========================================================================== */
.vg-corner-logo {
    display: block;
    position: fixed;
    bottom: 107px;
    left: 99px;
    width: 53px;
    height: 53px;
    transform: scale(1.6) translate(-50%, 50%);
    transform-origin: center center;
    pointer-events: auto;
    z-index: 2; /* Ensure V logo is above triangle and background elements */
    cursor: pointer;
    text-decoration: none;
}

.vg-corner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Main Content Container - Ensure it's above background
   ========================================================================== */
.vg-theme .container,
.vg-theme .container-fluid {
    position: relative;
}

/* Login/Reset Row Styles - Vellox Group Theme
   ========================================================================== */
.vg-theme .login-row,
.vg-theme .reset-row {
    text-align: center;
    padding-top: 50px;
}

.vg-theme .login-row img,
.vg-theme .reset-row img {
    max-width: 100%;
    margin-bottom: 0;
}

/* Powered By Logo - Smaller and positioned below main logo
   ========================================================================== */
.vg-theme .login-row img.powered-by-logo,
.vg-theme .reset-row img.powered-by-logo {
    max-width: 250px;
    margin-bottom: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Form Group Styles - Vellox Group Theme
   ========================================================================== */
.vg-theme .form-group {
    margin-bottom: 15px;
}

.vg-theme .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #323E3E; /* Tarmac */
    text-align: left;
}

/* Button Size Overrides for Login/Reset Password Pages
   Increases button padding and font size for better usability on
   login and reset password pages where buttons are primary actions
   ========================================================================== */
.vg-theme .btn,
.vg-theme .btn-default,
.vg-theme input[type="submit"].btn,
.vg-theme input[type="button"].btn {
    padding: 10px 24px;
    font-size: 14px;
}

/* Button Container Styles
   ========================================================================== */
.vg-theme .buttons {
    margin-top: 20px;
}

.vg-theme .buttons .btn {
    margin-right: 5px;
    min-width: 100px;
}

.vg-theme .buttons .btn:disabled,
.vg-theme .buttons .btn[disabled] {
    background-color: #EAE9E5; /* Concrete */
    border-color: #6D7A7A; /* Light Tarmac */
    color: #6D7A7A; /* Light Tarmac */
    cursor: not-allowed;
}

.vg-theme .buttons .btn:disabled:hover,
.vg-theme .buttons .btn[disabled]:hover,
.vg-theme .buttons .btn:disabled:focus,
.vg-theme .buttons .btn[disabled]:focus {
    background-color: #EAE9E5; /* Concrete - no change on hover */
    border-color: #6D7A7A; /* Light Tarmac */
    color: #6D7A7A; /* Light Tarmac */
}

/* Snackbar Styles - Vellox Group Theme
   ========================================================================== */
.vg-theme div#login-snackbar {
    display: none;
    position: absolute;
    top: 2rem;
    box-shadow: 0px 4px 8px -3px rgba(31, 41, 41, 0.3);
    z-index: 1; /* Needs to be above main content */
}

/* Reset Password Content Styles - Vellox Group Theme
   ========================================================================== */
.vg-theme .reset-password-content {
    padding: 0 24px;
}

.vg-theme .reset-password-header {
    font-size: 24px;
    margin-top: 40px;
    font-weight: 600;
    color: #323E3E; /* Tarmac */
}

.vg-theme .reset-password-description {
    margin-top: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #465152; /* Mid Tarmac */
}

.vg-theme .reset-form-fields {
    background-color: transparent;
    border: none;
}

.vg-theme .reset-form-fields .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.vg-theme .reset-form-fields .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #323E3E; /* Tarmac */
}

.vg-theme .reset-form-fields .form-control {
    border: 1px solid #7E8484; /* Light Tarmac */
    border-radius: 0;
    padding: 10px 12px;
    font-size: 14px;
    color: #323E3E; /* Tarmac */
    background-color: #FFFFFF;
    height: auto;
}

/* Didn't get email link - Vellox Group Theme */
.vg-theme .didnt-get-email {
    text-align: center;
    margin-top: 15px;
}

.vg-theme .didnt-get-email-link {
    color: #0066CC; /* Default hyperlink blue */
    text-decoration: none;
}

.vg-theme .didnt-get-email-link:hover {
    color: #0052A3; /* Darker blue on hover */
    text-decoration: underline;
}

/* Back to Sign In - Vellox Group Theme (hyperlink style) */
.vg-theme .back-to-signin {
    text-align: center;
    margin-top: 15px;
    color: #323E3E; /* Tarmac */
}

.vg-theme .back-to-signin-link {
    color: #0066CC; /* Default hyperlink blue */
    text-decoration: none;
}

.vg-theme .back-to-signin-link:hover {
    color: #0052A3; /* Darker blue on hover */
    text-decoration: underline;
}

/* Error/Validation Message Styles - Vellox Group Theme
   ========================================================================== */
.vg-theme .login-error,
.vg-theme .text-danger {
    color: #FF3737; /* Vermillion */
    text-align: left;
}

.vg-theme .has-error .form-control {
    border-color: #FF3737; /* Vermillion */
}

/* Text Input Fields - No border radius */
.vg-theme input[type="text"],
.vg-theme input[type="password"],
.vg-theme .form-control {
    border-radius: 0;
}

/* Panel Styles - Vellox Group Theme
   ========================================================================== */
.vg-theme .legacy-login,
.vg-theme .sso {
    margin-top: 20px;
}

/* Legacy Login Form Groups - Centered with Max Width
   ========================================================================== */
.vg-theme .legacy-login .form-group,
.vg-theme .legacy-login div:has(span[data-id="chkboxRemember"]),
.vg-theme .legacy-login .password-reset-row {
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
}

.vg-theme .login-method-text {
    color: #323E3E; /* Tarmac */
    font-weight: 500;
    margin-bottom: 24px;
}

/* SSO Login Method Text
   ========================================================================== */
.vg-theme .sso .login-method-text {
    margin-bottom: 24px;
}

/* SSO Login Buttons - Equal Size with OR Divider
   ========================================================================== */
.vg-theme .sso .buttons {
    margin-top: 16px;
}

.vg-theme .sso .buttons .sso-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 12px 24px;
    font-weight: 500;
    text-align: center;
    background-color: #323E3E; /* Tarmac */
    color: #FFFFFF; /* White */
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 0;
}

.vg-theme .sso .buttons .sso-btn:hover,
.vg-theme .sso .buttons .sso-btn:focus {
    background-color: #465152; /* Mid Tarmac */
    color: #FFFFFF; /* White */
    text-decoration: none;
}

/* SSO Link Account Panel - Side by Side Buttons
   ========================================================================== */
.vg-theme .sso-link .buttons.sso-link-buttons {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.vg-theme .sso .sso-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    max-width: 280px;
}

.vg-theme .sso .sso-divider-line {
    flex: 1;
    height: 1px;
    background-color: #C4C4C4;
}

.vg-theme .sso .sso-divider-text {
    padding: 0 15px;
    color: #7E8484; /* Light Tarmac */
    font-weight: 500;
}

/* Alert Styles within Login - Vellox Group Theme
   ========================================================================== */
.vg-theme .alert {
    border-radius: 0;
}

/* Incremental Lockout Alert
   ========================================================================== */
.vg-theme .inc-lock {
    margin-top: 15px;
    padding: 15px;
}

/* Remember Me Checkbox Area
   ========================================================================== */
.vg-theme .legacy-login div:has(span[data-id="chkboxRemember"]) {
    text-align: left;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.vg-theme .legacy-login div:has(span[data-id="chkboxRemember"]) label,
.vg-theme .legacy-login label.remember-me-label {
    color: #323E3E !important; /* Tarmac */
    margin-bottom: 0;
    font-weight: 400;
    display: inline;
    cursor: pointer;
}

.vg-theme .legacy-login span[data-id="chkboxRemember"] {
    display: inline-flex;
    align-items: center;
}

/* Checkbox Override for Login Page - Tarmac border
   ========================================================================== */
.vg-theme .legacy-login span[data-id="chkboxRemember"] input[type="checkbox"],
.vg-theme .legacy-login input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border: 2px solid #323E3E !important; /* Tarmac */
    background-color: #FFFFFF; /* White background */
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    margin: 0;
    flex-shrink: 0;
    border-radius: 0;
}

.vg-theme .legacy-login span[data-id="chkboxRemember"] input[type="checkbox"]:hover,
.vg-theme .legacy-login input[type="checkbox"]:hover {
    border-color: #465152 !important; /* Mid Tarmac */
}

.vg-theme .legacy-login span[data-id="chkboxRemember"] input[type="checkbox"]:checked,
.vg-theme .legacy-login input[type="checkbox"]:checked {
    background-color: #323E3E !important; /* Tarmac */
    border-color: #323E3E !important; /* Tarmac */
}

.vg-theme .legacy-login span[data-id="chkboxRemember"] input[type="checkbox"]:checked::after,
.vg-theme .legacy-login input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF; /* White */
    font-weight: bold;
}

.vg-theme .legacy-login span[data-id="chkboxRemember"] input[type="checkbox"]:disabled,
.vg-theme .legacy-login input[type="checkbox"]:disabled {
    border-color: #C4C4C4 !important;
    background-color: transparent;
    cursor: not-allowed;
}

.vg-theme .legacy-login span[data-id="chkboxRemember"] input[type="checkbox"]:checked:disabled,
.vg-theme .legacy-login input[type="checkbox"]:checked:disabled {
    background-color: #C4C4C4 !important;
    border-color: #C4C4C4 !important;
}

.vg-theme .legacy-login span[data-id="chkboxRemember"] input[type="checkbox"]:checked:disabled::after,
.vg-theme .legacy-login input[type="checkbox"]:checked:disabled::after {
    color: #7E8484; /* Light Tarmac */
}

/* Password Reset Link - Default hyperlink color
   ========================================================================== */
.vg-theme .legacy-login .password-reset-row {
    text-align: left;
    margin-top: 10px;
}

/* Login Button - Same Size as SSO Buttons, Centered */
.vg-theme .legacy-login .buttons {
    margin-top: 20px;
    text-align: center;
}

.vg-theme .legacy-login .buttons .btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.vg-theme .legacy-login .buttons .btn:disabled,
.vg-theme .legacy-login .buttons .btn[disabled],
.vg-theme .legacy-login .buttons .btn.disabled {
    background-color: #EAE9E5; /* Concrete */
    border-color: #6D7A7A; /* Light Tarmac */
    color: #6D7A7A; /* Light Tarmac */
    cursor: not-allowed;
}

.vg-theme .legacy-login .buttons .btn:disabled:hover,
.vg-theme .legacy-login .buttons .btn[disabled]:hover,
.vg-theme .legacy-login .buttons .btn.disabled:hover,
.vg-theme .legacy-login .buttons .btn:disabled:focus,
.vg-theme .legacy-login .buttons .btn[disabled]:focus,
.vg-theme .legacy-login .buttons .btn.disabled:focus {
    background-color: #EAE9E5; /* Concrete - no change on hover */
    border-color: #6D7A7A; /* Light Tarmac */
    color: #6D7A7A; /* Light Tarmac */
}

/* Back to Sign in Selector
   ========================================================================== */
.vg-theme .legacy-login .back-to-selector {
    text-align: center;
    margin-top: 15px;
    color: #323E3E; /* Tarmac */
}

.vg-theme .legacy-login a.password-reset-link,
.vg-theme .legacy-login a[id$="lnkBtn_ResetPassword"],
.vg-theme a[id$="lnkBtn_ResetPassword"] {
    color: #0066CC; /* Default hyperlink blue */
    text-decoration: none;
}

.vg-theme .legacy-login a.password-reset-link:hover,
.vg-theme .legacy-login a[id$="lnkBtn_ResetPassword"]:hover,
.vg-theme a[id$="lnkBtn_ResetPassword"]:hover {
    color: #0052A3; /* Darker blue on hover */
    text-decoration: underline;
}

/* Form Footer Links - Tarmac color for consistency
   ========================================================================== */

/* Page Title/Heading Styles
   ========================================================================== */
.vg-theme h3 {
    color: #323E3E; /* Tarmac */
    font-weight: 600;
    margin-bottom: 15px;
}

.vg-theme p {
    color: #465152; /* Mid Tarmac */
    line-height: 1.5;
}

/* Release Notes Section
   ========================================================================== */
.vg-theme #release_notes {
    color: #7E8484; /* Light Tarmac */
    margin-top: 30px;
}

/* Login Banner Container
   ========================================================================== */
.vg-theme .container:has(.img-responsive) {
    margin-top: 30px;
}

/* Footer Styles - Vellox Group Theme
   Override the default footer background from styles.css
   ========================================================================== */
body.vg-theme footer.footer,
.vg-theme footer.footer {
    background: #323E3E !important; /* Tarmac */
    background-image: none !important;
    color: #EAE9E5; /* Concrete text */
}

body.vg-theme footer.footer a,
.vg-theme footer.footer a {
    color: #EAE9E5; /* Concrete text for links */
}

body.vg-theme footer.footer .footer-up {
    color: #EAE9E5; /* Concrete */
}

/* ==========================================================================
   Responsive Styles - Tablet (769px - 1024px)
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .vg-corner-triangle {
        border-right-width: 280px;
        border-bottom-width: 500px;
    }
    
    .vg-corner-logo {
        bottom: 90px;
        left: 90px;
    }
}

/* ==========================================================================
   Responsive Styles - Mobile (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .vg-corner-triangle {
        border-right-width: 180px;
        border-bottom-width: 320px;
    }
    
    .vg-corner-logo {
        bottom: 60px;
        left: 60px;
        width: 40px;
        height: 40px;
        transform: scale(1.4) translate(-50%, 50%);
    }
    
    .vg-theme .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .vg-theme .login-row img,
    .vg-theme .reset-row img {
        max-width: 80%;
    }
    
    .vg-theme .login-row img.powered-by-logo,
    .vg-theme .reset-row img.powered-by-logo {
        max-width: 200px;
    }
}

/* ==========================================================================
   Responsive Styles - Small Mobile (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
    .vg-corner-triangle {
        border-right-width: 120px;
        border-bottom-width: 210px;
    }
    
    .vg-corner-logo {
        bottom: 40px;
        left: 40px;
        width: 30px;
        height: 30px;
        transform: scale(1.2) translate(-50%, 50%);
    }
    
    .vg-theme .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .vg-theme .login-row,
    .vg-theme .reset-row {
        padding-top: 30px;
    }
    
    .vg-theme .login-row img,
    .vg-theme .reset-row img {
        max-width: 100%;
        width: 100%;
    }
    
    .vg-theme .login-row img.powered-by-logo,
    .vg-theme .reset-row img.powered-by-logo {
        max-width: 70%;
        width: 70%;
    }
}

/* ==========================================================================
   System Information Footer & Tooltip Styles
   ========================================================================== */

/* System Info Footer Container */
footer[id$='footerSystemInfo'] {
    position: fixed;
    z-index: 1000;
    background: transparent;
    inset: auto 16px 16px auto;
}

/* System Info Table */
.system-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #323E3E; /* Tarmac */
}

.system-info-table td {
    padding: 8px 0;
    vertical-align: top;
}

/* Header Row */
.system-info-header {
    font-size: 18px;
    font-weight: 600;
    color: #323E3E; /* Tarmac */
    padding-bottom: 8px;
    position: relative;
}

/* Divider */
.system-info-divider {
    border: none;
    border-top: 1px solid #C4C4C4;
    margin: 4px 0;
}

/* Label Column */
.system-info-label {
    font-weight: 600;
    color: #323E3E; /* Tarmac */
    width: 100px;
    padding-right: 16px;
}

/* Value Column */
.system-info-value {
    color: #465152; /* Mid Tarmac */
    line-height: 1.6;
}

.system-info-value a {
    color: #0066CC; /* Default hyperlink blue */
    text-decoration: none;
}

.system-info-value a:hover {
    color: #0052A3; /* Darker blue on hover */
    text-decoration: underline;
}

/* Copied feedback label */
.system-info-copied-label {
    position: relative;
    margin-right: 16px;
    color: #28a745;
    font-weight: 500;
    white-space: nowrap;
    display: none;
}

/* System info tooltip */
[id$='ttSystemInfo'].RadToolTip {
    max-width: 80%;
}

/* System info tooltip close icon override */
[id$='ttSystemInfo'].RadToolTip .rtClose.rtCloseIcon::before,
[id$='ttSystemInfo'].RadToolTip .rtClose.rtCloseIcon {
    right: 16px;
    top: 16px;
    z-index: 1;
    background: none;
    border: none;
    color: #323e3e; /* Tarmac */
}

[id$='ttSystemInfo'].RadToolTip .rtClose.rtCloseIcon:hover::before,
[id$='ttSystemInfo'].RadToolTip .rtClose.rtCloseIcon:hover {
    right: 16px;
    top: 16px;
    z-index: 1;
    background: none;
    border: none;
    color: #7E8484; /* Light Tarmac */
}

/* Form Input Border Overrides - Login Page
   ========================================================================== */
.vg-theme .form-control {
    border-color: #323E3E; /* Tarmac */
}

.vg-theme .form-control:focus {
    border-color: #465152; /* Mid Tarmac */
}
