.home-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: auto;
    height: auto;
}

.home-button:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #00a8d1;
    color: #00a8d1;
}

.home-button i {
    font-size: 16px;
    color: #00a8d1;
}

.home-button span {
    color: inherit;
}

@media (max-width: 991px) {
    .home-button {
        top: 10px;
        left: 10px !important;
        padding: 6px 12px;
    }

    .home-button span {
        display: none;
    }

    .home-button i {
        font-size: 16px;
    }
}