/* ============================================
   EMERALD GREEN & DARK SLATE BUTTON STYLES
   ============================================ */

/* Fixed Bottom Bar - Dark Slate Style */
.fixed-bottom-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(11, 17, 24, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-top: 1px solid #1a2634 !important;
    padding: 10px 16px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.5) !important;
}

/* Input Field - Dark Slate */
.input {
    padding: 12px 16px !important;
    border: 1px solid #243447 !important;
    border-radius: 3px !important;
    font-size: 14px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    width: 160px !important;
    flex-shrink: 0 !important;
    background: #111822 !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.input:focus {
    outline: none !important;
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25) !important;
}

.input::placeholder {
    color: #64748b !important;
}

/* Button Link - Base Style */
.btn-link {
    padding: 12px 24px !important;
    border: none !important;
    border-radius: 3px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Login Button - Dark Slate */
.btn-login {
    background: #162230 !important;
    border: 1px solid #25374d !important;
    color: #ffffff !important;
}

.btn-login:hover {
    background: #1f3044 !important;
    color: #ffffff !important;
}

/* Register Button - Emerald Green */
.btn-register {
    background: #10b981 !important;
    color: #04241a !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
}

.btn-register:hover {
    background: #34d399 !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6) !important;
    transform: translateY(-1px) !important;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .fixed-bottom-bar {
        padding: 10px 12px !important;
        gap: 8px !important;
    }
    
    .input {
        width: 120px !important;
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
    
    .btn-link {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
}

/* Safe area for notched devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .fixed-bottom-bar {
        padding-bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    }
}
