@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Home Button Style */
.home-button {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.btn-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #555;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-home:hover {
    background: #fff;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Back to Top Button */
#btn-back-to-top {
    position: fixed;
    bottom: 80px;
    /* Moved up to make room for Login button */
    right: 20px;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

#btn-back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#btn-back-to-top i {
    font-size: 1.2rem;
}

/* Floating Login Button */
#btn-floating-login {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

#btn-floating-login:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#btn-floating-login i {
    font-size: 1.2rem;
}

/* Dark mode support if needed in future */
[data-theme="dark"] .btn-home {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

[data-theme="dark"] .btn-home:hover {
    background: rgba(40, 40, 40, 0.9);
    color: #667eea;
}